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

Fixed unit tests.

This commit is contained in:
Michael Keller 2021-01-10 22:29:23 +13:00
parent b189f8f1f7
commit fe3f0aee3e

View file

@ -21,6 +21,7 @@ extern "C" {
#include "blackbox/blackbox.h"
#include "build/debug.h"
#include "common/maths.h"
#include "common/streambuf.h"
#include "config/feature.h"
#include "config/config.h"
#include "fc/controlrate_profile.h"
@ -193,4 +194,8 @@ extern "C" {
uint16_t getAverageSystemLoadPercent(void) { return 0; }
bool isMotorProtocolEnabled(void) { return false; }
void pinioBoxTaskControl(void) {}
void sbufWriteU8(sbuf_t *, uint8_t) {}
void sbufWriteU16(sbuf_t *, uint16_t) {}
void sbufWriteU32(sbuf_t *, uint32_t) {}
}