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

fix OSD unittest for log status element

This commit is contained in:
Kiripolszky Károly 2018-06-20 11:30:34 +02:00
parent ada8235470
commit c4a32160a7

View file

@ -26,6 +26,7 @@ extern "C" {
#include "build/debug.h"
#include "blackbox/blackbox.h"
#include "blackbox/blackbox_io.h"
#include "pg/pg.h"
#include "pg/pg_ids.h"
@ -1017,6 +1018,14 @@ extern "C" {
return 0;
}
bool isBlackboxDeviceWorking() {
return true;
}
bool isBlackboxDeviceFull() {
return false;
}
bool isSerialTransmitBufferEmpty(const serialPort_t *) {
return false;
}