// Main starting point for STM32 boards. // // Copyright (C) 2019 Kevin O'Connor // // This file may be distributed under the terms of the GNU GPLv3 license. #include "board/armcm_boot.h" // armcm_main #include "internal.h" // clock_setup #include "sched.h" // sched_main // Main entry point - called from armcm_boot.c:ResetHandler() void armcm_main(void) { SystemInit(); clock_setup(); sched_main(); }