16 lines
326 B
C
16 lines
326 B
C
// vim: set et:
|
|
|
|
#ifndef PROTOCFG_H_
|
|
#define PROTOCFG_H_
|
|
|
|
/*#define USB_VID 0x2e8a*/ /* Raspberry Pi */
|
|
#define USB_VID 0xcafe /* TinyUSB */
|
|
/*#define USB_VID 0x1209*/ /* Generic */
|
|
/*#define USB_VID 0x1d50*/ /* OpenMoko */
|
|
#define USB_PID 0x1312
|
|
|
|
// TODO: other RP2040 boards
|
|
#define INFO_BOARDNAME "RP2040 Pico"
|
|
|
|
#endif
|