mirror of
https://github.com/rvtr/ctr_firmware.git
synced 2025-10-31 07:51:08 -04:00
git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-09-30%20-%20paladin.7z/paladin/ctr_firmware@53 b871894f-2f95-9b40-918c-086798483c85
21 lines
623 B
C
21 lines
623 B
C
#ifndef CTRSDK_VERSION_H_
|
|
#define CTRSDK_VERSION_H_
|
|
#define SDK_VERSION_DATE 20070704
|
|
#define SDK_VERSION_TIME 1421
|
|
#define SDK_VERSION_MAJOR 4
|
|
#define SDK_VERSION_MINOR 0
|
|
#define SDK_VERSION_RELSTEP 30000
|
|
#define SDK_BUILDVER_CW_CC 3.0
|
|
#define SDK_BUILDVER_CW_LD 2.0
|
|
#define SDK_BUILDNUM_CW_CC 123
|
|
#define SDK_BUILDNUM_CW_LD 84
|
|
|
|
#ifndef SDK_VERSION_NUMBER
|
|
#define SDK_VERSION_NUMBER(major, minor, relstep) \
|
|
(((major) << 24) | ((minor) << 16) | ((relstep) << 0))
|
|
#define SDK_CURRENT_VERSION_NUMBER \
|
|
SDK_VERSION_NUMBER(SDK_VERSION_MAJOR, SDK_VERSION_MINOR, SDK_VERSION_RELSTEP)
|
|
#endif
|
|
|
|
#endif
|