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

Fix after rebase

This commit is contained in:
Sami Korhonen 2016-09-15 11:36:17 +03:00
parent 97f554e210
commit 59d2afb2a2
10 changed files with 29 additions and 37 deletions

View file

@ -26,7 +26,7 @@
#include "platform.h"
#include "build_config.h"
#include "build/build_config.h"
#include "common/utils.h"
#include "io.h"
@ -283,7 +283,7 @@ uint32_t uartTotalRxBytesWaiting(serialPort_t *instance)
}
}
uint8_t uartTotalTxBytesFree(serialPort_t *instance)
uint32_t uartTotalTxBytesFree(serialPort_t *instance)
{
uartPort_t *s = (uartPort_t*)instance;