f7 openblt

This commit is contained in:
rusefillc 2024-01-26 17:09:52 -05:00
parent e699774c12
commit c320541e04
1 changed files with 8 additions and 0 deletions

View File

@ -14,6 +14,14 @@ void TimerReset() { }
void CopService() { }
void TimerUpdate() { }
extern "C" void __core_init() {
// *** this is about specifically stm32f7 ***
// This overrides the built-in __core_init() function
// We do this to avoid enabling the D/I caches, which
// we'll immediately have to turn back off when jumping
// to the main firmware (which will then enable them itself)
}
blt_int32u TimerGet() {
return 0;
}