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

Merge branch 'VCM_motor_stop_fix' of git://github.com/pinkywafer/cleanflight into pinkywafer-VCM_motor_stop_fix

This commit is contained in:
Dominic Clifton 2015-03-30 19:29:40 +01:00
commit 80a6507649
4 changed files with 29 additions and 7 deletions

View file

@ -22,6 +22,8 @@
extern "C" {
#include "sensors/battery.h"
#include "io/rc_controls.h"
}
#include "unittest_macros.h"
@ -88,6 +90,19 @@ extern "C" {
uint8_t armingFlags = 0;
int16_t rcCommand[4] = {0,0,0,0};
bool feature(uint32_t mask)
{
UNUSED(mask);
return false;
}
throttleStatus_e calculateThrottleStatus(rxConfig_t *rxConfig, uint16_t deadband3d_throttle)
{
UNUSED(*rxConfig);
UNUSED(deadband3d_throttle);
return THROTTLE_HIGH;
}
uint16_t adcGetChannel(uint8_t channel)
{
UNUSED(channel);