1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-04 21:48:17 +00:00

fixup! refactor(core): streamline U5 RAM layout

This commit is contained in:
tychovrahe 2024-12-02 15:59:33 +01:00
parent 1e3174aab7
commit 8558b72d93

View File

@ -20,7 +20,6 @@
#ifndef TREZORHAL_BOOTARGS_H
#define TREZORHAL_BOOTARGS_H
#include <trezor_model.h>
#include <trezor_types.h>
// Defines boot command processed in bootloader on next reboot
@ -34,7 +33,7 @@ typedef enum {
} boot_command_t;
// Maximum size boot_args array
#define BOOT_ARGS_MAX_SIZE (BOOTARGS_SIZE - 8)
#define BOOT_ARGS_MAX_SIZE (256 - 8)
typedef union {
uint8_t raw[BOOT_ARGS_MAX_SIZE];