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:
parent
f8be9046ba
commit
cbe83af5aa
2 changed files with 7 additions and 1 deletions
|
@ -40,7 +40,7 @@ void configLock(void)
|
|||
// NOOP
|
||||
}
|
||||
|
||||
void configFlashClearFlags(void)
|
||||
void configClearFlags(void)
|
||||
{
|
||||
// NOOP
|
||||
}
|
||||
|
|
|
@ -202,4 +202,10 @@ void uartReconfigure(uartPort_t *s)
|
|||
uartConfigureExternalPinInversion(s);
|
||||
}
|
||||
|
||||
void uartEnableTxInterrupt(uartPort_t *uartPort)
|
||||
{
|
||||
UNUSED(uartPort);
|
||||
//TODO: Implement
|
||||
}
|
||||
|
||||
#endif /* USE_UART */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue