Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify FrSky D-series telemetry for compatibility with Lua script #3116

Merged
merged 10 commits into from
Jun 22, 2018
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -721,6 +721,7 @@ HIGHEND_SRC = \
sensors/rangefinder.c \
sensors/opflow.c \
telemetry/crsf.c \
telemetry/frsky_d.c \
telemetry/frsky.c \
telemetry/hott.c \
telemetry/ibus_shared.c \
Expand Down
2 changes: 1 addition & 1 deletion src/main/fc/cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ extern uint8_t __config_end;
#include "sensors/opflow.h"
#include "sensors/sensors.h"

#include "telemetry/frsky.h"
#include "telemetry/frsky_d.h"
#include "telemetry/telemetry.h"
#include "build/debug.h"

Expand Down
2 changes: 1 addition & 1 deletion src/main/fc/settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1303,7 +1303,7 @@ groups:

- name: PG_TELEMETRY_CONFIG
type: telemetryConfig_t
headers: ["io/serial.h", "telemetry/telemetry.h", "telemetry/frsky.h"]
headers: ["io/serial.h", "telemetry/telemetry.h", "telemetry/frsky_d.h"]
condition: USE_TELEMETRY
members:
- name: telemetry_switch
Expand Down
Loading