only:codestyle
This commit is contained in:
parent
cd3021a027
commit
2bd6a2add3
|
@ -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;
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ void tryResetWatchdog() {
|
|||
void setWatchdogResetPeriod(int) {
|
||||
}
|
||||
|
||||
void baseMCUInit(void) {
|
||||
void baseMCUInit() {
|
||||
}
|
||||
|
||||
void _unhandled_exception(void) {
|
||||
|
|
|
@ -23,7 +23,7 @@ void tryResetWatchdog() {
|
|||
void setWatchdogResetPeriod(int) {
|
||||
}
|
||||
|
||||
void baseMCUInit(void) {
|
||||
void baseMCUInit() {
|
||||
}
|
||||
|
||||
void _unhandled_exception(void) {
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue