1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 16:25:31 +03:00

Merge pull request #4279 from codecae/crsf_accel_telem_fix

CRSF Attitude Telemetry Fix
This commit is contained in:
Martin Budden 2017-10-09 12:30:46 +01:00 committed by GitHub
commit 30432a3d09
3 changed files with 8 additions and 1 deletions

View file

@ -56,6 +56,7 @@
#include "telemetry/msp_shared.h"
#include "fc/config.h"
#include "sensors/sensors.h"
#define CRSF_CYCLETIME_US 100000 // 100ms, 10 Hz
#define CRSF_DEVICEINFO_VERSION 0x01
@ -350,7 +351,9 @@ void initCrsfTelemetry(void)
#endif
int index = 0;
crsfSchedule[index++] = BV(CRSF_FRAME_ATTITUDE_INDEX);
if (sensors(SENSOR_ACC)) {
crsfSchedule[index++] = BV(CRSF_FRAME_ATTITUDE_INDEX);
}
crsfSchedule[index++] = BV(CRSF_FRAME_BATTERY_SENSOR_INDEX);
crsfSchedule[index++] = BV(CRSF_FRAME_FLIGHT_MODE_INDEX);
if (feature(FEATURE_GPS)) {

View file

@ -59,6 +59,7 @@ extern "C" {
#include "telemetry/telemetry.h"
#include "telemetry/msp_shared.h"
#include "telemetry/smartport.h"
#include "sensors/acceleration.h"
bool handleMspFrame(uint8_t *frameStart, uint8_t *frameEnd);
bool sendMspReply(uint8_t payloadSize, mspResponseFnPtr responseFn);
@ -78,6 +79,7 @@ extern "C" {
PG_REGISTER(telemetryConfig_t, telemetryConfig, PG_TELEMETRY_CONFIG, 0);
PG_REGISTER(systemConfig_t, systemConfig, PG_SYSTEM_CONFIG, 0);
PG_REGISTER(rxConfig_t, rxConfig, PG_RX_CONFIG, 0);
PG_REGISTER(accelerometerConfig_t, accelerometerConfig, PG_ACCELEROMETER_CONFIG,0);
extern bool crsfFrameDone;
extern crsfFrame_t crsfFrame;

View file

@ -54,6 +54,7 @@ extern "C" {
#include "sensors/battery.h"
#include "sensors/sensors.h"
#include "sensors/acceleration.h"
#include "telemetry/crsf.h"
#include "telemetry/telemetry.h"
@ -70,6 +71,7 @@ extern "C" {
PG_REGISTER(telemetryConfig_t, telemetryConfig, PG_TELEMETRY_CONFIG, 0);
PG_REGISTER(systemConfig_t, systemConfig, PG_SYSTEM_CONFIG, 0);
PG_REGISTER(rxConfig_t, rxConfig, PG_RX_CONFIG, 0);
PG_REGISTER(accelerometerConfig_t, accelerometerConfig, PG_ACCELEROMETER_CONFIG, 0);
}
#include "unittest_macros.h"