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

Tidied RX_SPI enums

This commit is contained in:
Martin Budden 2016-12-27 14:05:45 +00:00
parent d0d335a5e5
commit df62665728
7 changed files with 32 additions and 32 deletions

View file

@ -98,7 +98,7 @@ uint8_t NRF24L01_ReadPayload(uint8_t *data, uint8_t length)
/*
* Empty the transmit FIFO buffer.
*/
void NRF24L01_FlushTx()
void NRF24L01_FlushTx(void)
{
rxSpiWriteByte(FLUSH_TX);
}
@ -106,7 +106,7 @@ void NRF24L01_FlushTx()
/*
* Empty the receive FIFO buffer.
*/
void NRF24L01_FlushRx()
void NRF24L01_FlushRx(void)
{
rxSpiWriteByte(FLUSH_RX);
}