only:codestyle

This commit is contained in:
rusefillc 2025-01-12 13:34:31 -05:00
parent cd3021a027
commit 2bd6a2add3
4 changed files with 4 additions and 4 deletions

View File

@ -143,7 +143,7 @@ void tryResetWatchdog() {
void setWatchdogResetPeriod(int) {
}
void baseMCUInit(void) {
void baseMCUInit() {
// looks like this holds a random value on start? Let's set a nice clean zero
DWT->CYCCNT = 0;

View File

@ -30,7 +30,7 @@ void tryResetWatchdog() {
void setWatchdogResetPeriod(int) {
}
void baseMCUInit(void) {
void baseMCUInit() {
}
void _unhandled_exception(void) {

View File

@ -23,7 +23,7 @@ void tryResetWatchdog() {
void setWatchdogResetPeriod(int) {
}
void baseMCUInit(void) {
void baseMCUInit() {
}
void _unhandled_exception(void) {

View File

@ -8,7 +8,7 @@
#ifdef __cplusplus
// Base MCU
void baseMCUInit(void);
void baseMCUInit();
void jump_to_bootloader();
#if EFI_USE_OPENBLT
void jump_to_openblt();