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

Fix unit test compilation failure.

This commit is contained in:
Dominic Clifton 2015-04-25 11:00:32 +02:00
parent f05a12863c
commit b63e074d0c

View file

@ -32,6 +32,7 @@ extern "C" {
#include "sensors/sensors.h"
#include "sensors/acceleration.h"
#include "io/beeper.h"
#include "io/escservo.h"
#include "io/rc_controls.h"
@ -187,11 +188,11 @@ void generatePitchRollCurve(controlRateConfig_t *) {
callCounts[COUNTER_GENERATE_PITCH_ROLL_CURVE]++;
}
void queueConfirmationBeep(uint8_t) {
void beeperConfirmationBeeps(uint8_t) {
callCounts[COUNTER_QUEUE_CONFIRMATION_BEEP]++;
}
void beeper(uint8_t mode) {
void beeper(beeperMode_e mode) {
UNUSED(mode);
}