1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 08:15:30 +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

@ -683,7 +683,7 @@ int osdHeartbeat(void)
return 0;
}
uint32_t osdTxroom(void)
uint32_t osdTxBytesFree(void)
{
return UINT32_MAX;
}
@ -721,7 +721,7 @@ displayPortVTable_t osdVTable = {
osdWrite,
osdHeartbeat,
osdResync,
osdTxroom,
osdTxBytesFree,
};
void osdCmsInit(displayPort_t *pPort)