Fixed unit tests.

This commit is contained in:
Michael Keller 2021-01-10 22:29:23 +13:00
parent b189f8f1f7
commit fe3f0aee3e
1 changed files with 5 additions and 0 deletions

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) {}
}