1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 18:39:05 +00:00
trezor-firmware/embed/trezorhal/common.h

24 lines
562 B
C
Raw Normal View History

#ifndef __TREZORHAL_COMMON_H__
#define __TREZORHAL_COMMON_H__
2017-03-29 18:50:45 +00:00
#include <stdint.h>
2017-04-10 17:11:44 +00:00
#define BOARDLOADER_START 0x08000000
2017-04-10 17:24:21 +00:00
#define BOOTLOADER_START 0x08010000
2017-04-10 17:11:44 +00:00
#define FIRMWARE_START 0x08020000
#define HEADER_SIZE 0x200
2017-10-11 10:58:36 +00:00
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);
2017-03-29 18:50:45 +00:00
void jump_to(uint32_t address);
2017-10-05 15:31:05 +00:00
void hal_delay(uint32_t ms);
#endif