1
0
forked from me/IronOS

Update BSP.cpp

This commit is contained in:
Ben V. Brown
2020-11-01 14:05:48 +11:00
parent 84772266fd
commit 7e4187e62d

View File

@@ -17,7 +17,7 @@ const uint8_t tempMeasureTicks = 25;
uint16_t totalPWM; // htim2.Init.Period, the full PWM cycle
// 2 second filter (ADC is PID_TIM_HZ Hz)
history<uint16_t, PID_TIM_HZ> rawTempFilter = {{0}, 0, 0};
history<uint16_t, PID_TIM_HZ> rawTempFilter = { { 0 }, 0, 0 };
void resetWatchdog() {
fwdgt_counter_reload();
}
@@ -124,4 +124,6 @@ void reboot() {
}
}
void delay_ms(uint16_t count) { delay_1ms(count); }
void delay_ms(uint16_t count) {
delay_1ms(count);
}