Files
3d_audio/sw_usb_audio/shared/version.h

19 lines
333 B
C
Raw Normal View History

2025-12-11 09:43:42 +08:00
// Shared version number for all reference designs
#if defined (PHATEN_GSV2)
#ifndef BCD_DEVICE_J
#define BCD_DEVICE_J (1)
#endif
#ifndef BCD_DEVICE_M
#define BCD_DEVICE_M (1)
#endif
#ifndef BCD_DEVICE_N
2025-12-17 11:56:02 +08:00
#if defined (STEREO_2K)
2025-12-17 14:22:06 +08:00
#define BCD_DEVICE_N (0xc)
2025-12-17 11:56:02 +08:00
#else
2025-12-17 13:49:57 +08:00
#define BCD_DEVICE_N (3)
2025-12-17 11:56:02 +08:00
#endif
2025-12-11 09:43:42 +08:00
#endif
#endif