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

Fast stick commands (#4208)

Implemented time-based stick command handling
This commit is contained in:
jirif 2017-09-26 12:36:54 +02:00 committed by Andrey Mironov
parent 368a079785
commit cbefe71a73
2 changed files with 49 additions and 40 deletions

View file

@ -48,6 +48,8 @@ extern "C" {
#include "fc/rc_adjustments.h"
#include "fc/rc_controls.h"
#include "scheduler/scheduler.h"
}
#include "unittest_macros.h"
@ -703,4 +705,5 @@ int16_t rcData[MAX_SUPPORTED_RC_CHANNEL_COUNT];
rxRuntimeConfig_t rxRuntimeConfig;
PG_REGISTER(blackboxConfig_t, blackboxConfig, PG_BLACKBOX_CONFIG, 0);
void resetArmingDisabled(void) {}
timeDelta_t getTaskDeltaTime(cfTaskId_e) { return 20000; }
}