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

Consistent naming for TxBytesFree

This commit is contained in:
jflyper 2016-11-02 15:55:29 +09:00
parent 567c5cded5
commit 9363f53945
5 changed files with 10 additions and 10 deletions

View file

@ -9,7 +9,7 @@ typedef struct displayPortVTable_s {
int (*write)(uint8_t col, uint8_t row, char *text);
int (*heartbeat)(void);
void (*resync)(struct displayPort_s *pPort);
uint32_t (*txroom)(void);
uint32_t (*txBytesFree)(void);
} displayPortVTable_t;
typedef struct displayPort_s {