1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-03-24 03:55:44 +00:00

bootloader: bump version to 1.4.0

This commit is contained in:
Pavol Rusnak 2018-03-13 15:42:31 +01:00
parent 4af78f06a3
commit 5ad53e99c3
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -21,15 +21,15 @@
#define __BOOTLOADER_H__
#define VERSION_MAJOR 1
#define VERSION_MINOR 3
#define VERSION_PATCH 3
#define VERSION_MINOR 4
#define VERSION_PATCH 0
#define STR(X) #X
#define VERSTR(X) STR(X)
#define VERSION_MAJOR_CHAR "\x01"
#define VERSION_MINOR_CHAR "\x03"
#define VERSION_PATCH_CHAR "\x03"
#define VERSION_MINOR_CHAR "\x04"
#define VERSION_PATCH_CHAR "\x00"
#include <stdbool.h>
#include "memory.h"