19 lines
334 B
C
19 lines
334 B
C
// 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 (3)
|
|
#endif
|
|
#ifndef BCD_DEVICE_N
|
|
#if defined (STEREO_2K)
|
|
#define BCD_DEVICE_N (0x0A)
|
|
#else
|
|
#define BCD_DEVICE_N (3)
|
|
#endif
|
|
#endif
|
|
|
|
#endif |