mirror of
https://github.com/infiniteCable2/panda.git
synced 2026-02-18 17:23:52 +08:00
16 lines
375 B
C
16 lines
375 B
C
// USB definitions
|
|
#define USB_VID 0xBBAAU
|
|
|
|
#ifdef BOOTSTUB
|
|
#define USB_PID 0xDDEEU
|
|
#else
|
|
#define USB_PID 0xDDCCU
|
|
#endif
|
|
|
|
#define USBPACKET_MAX_SIZE 0x40U
|
|
|
|
#define MAX_CAN_MSGS_PER_BULK_TRANSFER 51U
|
|
#define MAX_EP1_CHUNK_PER_BULK_TRANSFER 16256U // max data stream chunk in bytes, shouldn't be higher than 16320 or counter will overflow
|
|
|
|
#define CAN_INIT_TIMEOUT_MS 500U
|