mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-16 04:29:08 +00:00
d412ce987e
[no changelog]
15 lines
350 B
C
15 lines
350 B
C
#ifndef LAYOUT_COMMON_H
|
|
#define LAYOUT_COMMON_H
|
|
|
|
#include "flash_area.h"
|
|
|
|
// OTP blocks allocation
|
|
#define FLASH_OTP_BLOCK_BATCH 0
|
|
#define FLASH_OTP_BLOCK_BOOTLOADER_VERSION 1
|
|
#define FLASH_OTP_BLOCK_VENDOR_HEADER_LOCK 2
|
|
#define FLASH_OTP_BLOCK_RANDOMNESS 3
|
|
#define FLASH_OTP_BLOCK_DEVICE_VARIANT 4
|
|
#define FLASH_OTP_BLOCK_FIRMWARE_VERSION 5
|
|
|
|
#endif
|