Use new descriptors allocated to picokeys.

Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
Pol Henarejos
2026-01-22 12:30:12 +01:00
parent b5c2e55c71
commit 42267cb237
2 changed files with 4 additions and 4 deletions

View File

@@ -64,12 +64,12 @@ if(ESP_PLATFORM)
endif()
if(NOT DEFINED USB_VID)
set(USB_VID 0xFEFF)
set(USB_VID 0x2E8A)
endif()
add_definitions(-DUSB_VID=${USB_VID})
if(NOT DEFINED USB_PID)
set(USB_PID 0xFCFD)
set(USB_PID 0x10FD)
endif()
add_definitions(-DUSB_PID=${USB_PID})

View File

@@ -28,10 +28,10 @@
#include "usb.h"
#ifndef USB_VID
#define USB_VID 0xFEFF
#define USB_VID 0x2E8A
#endif
#ifndef USB_PID
#define USB_PID 0xFCFD
#define USB_PID 0x10FD
#endif
#if defined(PICO_PLATFORM) || defined(ESP_PLATFORM)