mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-17 21:22:10 +00:00
26 lines
598 B
C
26 lines
598 B
C
#ifndef __TREZORHAL_COMMON_H__
|
|
#define __TREZORHAL_COMMON_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
#define BOARDLOADER_START 0x08000000
|
|
#define BOOTLOADER_START 0x08020000
|
|
#define FIRMWARE_START 0x08040000
|
|
#define HEADER_SIZE 0x200
|
|
|
|
extern void memset_reg(volatile void *start, volatile void *stop, uint32_t val);
|
|
|
|
void clear_peripheral_local_memory(void);
|
|
|
|
void periph_init(void);
|
|
|
|
void __attribute__((noreturn)) __fatal_error(const char *msg, const char *file, int line, const char *func);
|
|
|
|
void jump_to(uint32_t address);
|
|
|
|
void hal_delay(uint32_t ms);
|
|
|
|
extern uint32_t __stack_chk_guard;
|
|
|
|
#endif
|