trezor-core/micropython/trezorhal/common.h

25 lines
641 B
C
Raw Normal View History

#ifndef __TREZORHAL_COMMON_H__
#define __TREZORHAL_COMMON_H__
2017-03-29 11:50:45 -07:00
#include <stdint.h>
2017-04-10 10:11:44 -07:00
#define BOARDLOADER_START 0x08000000
2017-04-10 10:24:21 -07:00
#define BOOTLOADER_START 0x08010000
2017-04-10 10:11:44 -07:00
#define FIRMWARE_START 0x08020000
#define HEADER_SIZE 0x200
void periph_init(void);
void __attribute__((noreturn)) nlr_jump_fail(void *val);
void __attribute__((noreturn)) __fatal_error(const char *msg);
2017-03-29 11:50:45 -07:00
void jump_to(uint32_t address);
// common helper macros
#define DPRINT(X) do { display_print(X, -1); display_print_out(0xFFFF, 0x0000); } while(0)
#define DPRINTLN(X) do { display_print(X "\n", -1); display_print_out(0xFFFF, 0x0000); } while(0)
#endif