mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-15 12:25:20 +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
|
// NOOP
|
||||||
}
|
}
|
||||||
|
|
||||||
void configFlashClearFlags(void)
|
void configClearFlags(void)
|
||||||
{
|
{
|
||||||
// NOOP
|
// NOOP
|
||||||
}
|
}
|
||||||
|
|
|
@ -202,4 +202,10 @@ void uartReconfigure(uartPort_t *s)
|
||||||
uartConfigureExternalPinInversion(s);
|
uartConfigureExternalPinInversion(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void uartEnableTxInterrupt(uartPort_t *uartPort)
|
||||||
|
{
|
||||||
|
UNUSED(uartPort);
|
||||||
|
//TODO: Implement
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* USE_UART */
|
#endif /* USE_UART */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue