1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 03:20:00 +03:00

As per @ledvinap review

This commit is contained in:
blckmn 2025-07-03 18:27:36 +10:00
parent e23e781956
commit 1361064245

View file

@ -48,8 +48,8 @@ void FAST_CODE run(void)
{
while (true) {
scheduler();
#if RUN_LOOP_DELAY_US
delayMicroseconds_real(RUN_LOOP_DELAY_US); // max rate 20kHz
#if defined(RUN_LOOP_DELAY_US) && RUN_LOOP_DELAY_US > 0
delayMicroseconds_real(RUN_LOOP_DELAY_US);
#endif
}
}