mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-18 04:18:10 +00:00
34 lines
756 B
C
34 lines
756 B
C
#include STM32_HAL_H
|
|
|
|
#include "common.h"
|
|
#include "display.h"
|
|
|
|
#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");
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
SCB->VTOR = LOADER_START;
|
|
periph_init();
|
|
|
|
display_init();
|
|
display_clear();
|
|
display_backlight(255);
|
|
|
|
LOADER_PRINTLN("reached loader");
|
|
LOADER_PRINTLN("waiting 1 second");
|
|
HAL_Delay(1000);
|
|
LOADER_PRINTLN("jumping to firmware");
|
|
|
|
jump_to(FIRMWARE_START);
|
|
|
|
return 0;
|
|
}
|