1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-02 03:20:59 +00:00
trezor-firmware/core/embed/bootloader/version.h
Martin Milata a36c410e70 chore(core): bump core, core/bootloader, core/prodtest versions
core: 2.8.3
bootloader: 2.1.9
prodtest: 0.2.10

[no changelog]

(cherry picked from commit 43b7d717f2791c62f4ed1f4d724a8eb1c42a6398)
2024-09-11 23:09:29 +02:00

17 lines
413 B
C

#pragma once
#include "model_version.h"
#define VERSION_MAJOR 2
#define VERSION_MINOR 1
#define VERSION_PATCH 9
#define VERSION_BUILD 0
#define VERSION_UINT32 \
(VERSION_MAJOR | (VERSION_MINOR << 8) | (VERSION_PATCH << 16) | \
(VERSION_BUILD << 24))
#define FIX_VERSION_MAJOR 2
#define FIX_VERSION_MINOR 0
#define FIX_VERSION_PATCH 0
#define FIX_VERSION_BUILD 0