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

PICO: Corrected incorrect function name configClearFlags, and added stub for uartEnableTxInterrupt

This commit is contained in:
blckmn 2025-01-10 17:58:49 +11:00
parent f8be9046ba
commit cbe83af5aa
2 changed files with 7 additions and 1 deletions

View file

@ -40,7 +40,7 @@ void configLock(void)
// NOOP
}
void configFlashClearFlags(void)
void configClearFlags(void)
{
// NOOP
}

View file

@ -202,4 +202,10 @@ void uartReconfigure(uartPort_t *s)
uartConfigureExternalPinInversion(s);
}
void uartEnableTxInterrupt(uartPort_t *uartPort)
{
UNUSED(uartPort);
//TODO: Implement
}
#endif /* USE_UART */