mirror of
https://github.com/V2RetroComputing/analog-firmware.git
synced 2024-12-31 21:30:10 +00:00
18 lines
389 B
C
18 lines
389 B
C
#define BUILDDATE 0x20230403
|
|
#define BUILDID 0x0171
|
|
#define BUILDSTR " 3 Apr 2023 Build 0171"
|
|
|
|
#ifdef ANALOG_GS
|
|
#define HWSTRING " V2 Analog GS Rev1"
|
|
#define HWBYTE 'G'
|
|
#define HWREV '1'
|
|
#elif defined(ANALOG_WIFI)
|
|
#define HWSTRING " V2 Analog WiFi Rev1"
|
|
#define HWBYTE 'W'
|
|
#define HWREV '1'
|
|
#else
|
|
#define HWSTRING " V2 Analog LC Rev1"
|
|
#define HWBYTE 'L'
|
|
#define HWREV '1'
|
|
#endif
|