1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 10:29:01 +00:00
trezor-firmware/micropython/loader/main.c

34 lines
723 B
C
Raw Normal View History

2017-03-20 14:41:21 +00:00
#include STM32_HAL_H
#include "common.h"
2017-03-20 14:41:21 +00:00
#include "display.h"
#define FIRMWARE_START 0x08020000
2017-03-21 15:06:22 +00:00
#define LOADER_FGCOLOR 0xFFFF
#define LOADER_BGCOLOR 0x0000
#define LOADER_PRINT(X) do { display_print(X, -1); display_print_out(LOADER_FGCOLOR, LOADER_BGCOLOR); } while(0)
#define LOADER_PRINTLN(X) do { display_print(X "\n", -1); display_print_out(LOADER_FGCOLOR, LOADER_BGCOLOR); } while(0)
void pendsv_isr_handler(void) {
__fatal_error("pendsv");
2017-03-20 14:41:21 +00:00
}
int main(void)
2017-03-20 14:41:21 +00:00
{
periph_init();
2017-03-20 14:41:21 +00:00
display_init();
display_clear();
display_backlight(255);
2017-03-29 18:50:45 +00:00
LOADER_PRINTLN("reached loader");
HAL_Delay(1000);
LOADER_PRINTLN("jumping to firmware");
jump_to(FIRMWARE_START);
2017-03-20 14:41:21 +00:00
return 0;
}