2019-03-29 15:26:02 +00:00
|
|
|
#define VERSION_MAJOR 2
|
2023-03-28 12:37:23 +00:00
|
|
|
#define VERSION_MINOR 1
|
2023-11-01 12:40:01 +00:00
|
|
|
#define VERSION_PATCH 5
|
2019-03-29 15:26:02 +00:00
|
|
|
#define VERSION_BUILD 0
|
|
|
|
#define VERSION_UINT32 \
|
|
|
|
(VERSION_MAJOR | (VERSION_MINOR << 8) | (VERSION_PATCH << 16) | \
|
|
|
|
(VERSION_BUILD << 24))
|
2017-10-12 12:35:01 +00:00
|
|
|
|
2019-03-29 15:26:02 +00:00
|
|
|
#define FIX_VERSION_MAJOR 2
|
|
|
|
#define FIX_VERSION_MINOR 0
|
|
|
|
#define FIX_VERSION_PATCH 0
|
|
|
|
#define FIX_VERSION_BUILD 0
|
2017-12-14 20:29:13 +00:00
|
|
|
|
2023-07-20 11:20:50 +00:00
|
|
|
#ifdef TREZOR_MODEL_R
|
|
|
|
#define VERSION_MONOTONIC 2
|
|
|
|
#else
|
2019-03-29 15:26:02 +00:00
|
|
|
#define VERSION_MONOTONIC 1
|
2023-07-20 11:20:50 +00:00
|
|
|
#endif
|