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

Fixed stubbing of 'debug.c' in unittests.

This commit is contained in:
mikeller 2018-05-26 15:09:24 +12:00
parent 98fb4d7c66
commit bf0a9c5c4f
2 changed files with 3 additions and 1 deletions

View file

@ -44,6 +44,9 @@ extern "C" {
struct gyroSensor_s;
STATIC_UNIT_TESTED void performGyroCalibration(struct gyroSensor_s *gyroSensor, uint8_t gyroMovementCalibrationThreshold);
STATIC_UNIT_TESTED bool fakeGyroRead(gyroDev_t *gyro);
uint8_t debugMode;
int16_t debug[DEBUG16_VALUE_COUNT];
}
#include "unittest_macros.h"