mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-27 01:48:17 +00:00
11 lines
197 B
C
11 lines
197 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);
|
|
|
|
#endif
|