trezor-core/micropython/loader/main.c

34 lines
756 B
C
Raw Normal View History

2017-03-20 07:41:21 -07:00
#include STM32_HAL_H
#include "common.h"
2017-03-20 07:41:21 -07:00
#include "display.h"
2017-03-21 08:06:22 -07: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 07:41:21 -07:00
}
int main(void)
2017-03-20 07:41:21 -07:00
{
SCB->VTOR = LOADER_START;
periph_init();
2017-03-20 07:41:21 -07:00
display_init();
display_clear();
display_backlight(255);
2017-03-29 11:50:45 -07:00
LOADER_PRINTLN("reached loader");
2017-03-30 07:50:39 -07:00
LOADER_PRINTLN("waiting 1 second");
2017-03-29 11:50:45 -07:00
HAL_Delay(1000);
LOADER_PRINTLN("jumping to firmware");
jump_to(FIRMWARE_START);
2017-03-20 07:41:21 -07:00
return 0;
}