mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-23 07:58:09 +00:00
12 lines
226 B
C
12 lines
226 B
C
#ifndef __BOARDLOADER_LOWLEVEL_H__
|
|
#define __BOARDLOADER_LOWLEVEL_H__
|
|
|
|
#include <stdbool.h>
|
|
|
|
void flash_set_option_bytes(void);
|
|
bool flash_check_option_bytes(void);
|
|
void periph_init(void);
|
|
bool reset_flags_init(void);
|
|
|
|
#endif
|