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

CF/BF - Update re-instated unit tests due to rc_modes changes.

This commit is contained in:
Hydra 2017-06-17 21:02:59 +01:00 committed by Michael Keller
parent 75511249d8
commit 0227b7fb28
5 changed files with 17 additions and 2 deletions

View file

@ -43,6 +43,7 @@ extern "C" {
#include "fc/runtime_config.h"
#include "fc/rc_controls.h"
#include "fc/rc_modes.h"
#include "rx/rx.h"
@ -234,6 +235,11 @@ bool sensors(uint32_t mask)
return false;
};
bool feature(uint32_t mask) {
UNUSED(mask);
return false;
}
uint32_t millis(void) { return 0; }
uint32_t micros(void) { return 0; }