Skip to content

Commit

Permalink
AP_Frsky_Telem: added new capabilities param to frame 0x5007
Browse files Browse the repository at this point in the history
  • Loading branch information
yaapu authored and peterbarker committed Mar 19, 2021
1 parent 592fba7 commit b62c2d9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
11 changes: 10 additions & 1 deletion libraries/AP_Frsky_Telem/AP_Frsky_SPort_Passthrough.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -418,10 +418,19 @@ uint32_t AP_Frsky_SPort_Passthrough::calc_param(void)
break;
case BATT_CAPACITY_1:
param_value = (uint32_t)roundf(AP::battery().pack_capacity_mah(0)); // battery pack capacity in mAh
_paramID = AP::battery().num_instances() > 1 ? BATT_CAPACITY_2 : FRAME_TYPE;
_paramID = AP::battery().num_instances() > 1 ? BATT_CAPACITY_2 : TELEMETRY_FEATURES;
break;
case BATT_CAPACITY_2:
param_value = (uint32_t)roundf(AP::battery().pack_capacity_mah(1)); // battery pack capacity in mAh
_paramID = TELEMETRY_FEATURES;
break;
case TELEMETRY_FEATURES:
#if HAL_WITH_FRSKY_TELEM_BIDIRECTIONAL
BIT_SET(param_value,PassthroughFeatures::BIDIR);
#endif
#ifdef ENABLE_SCRIPTING
BIT_SET(param_value,PassthroughFeatures::SCRIPTING);
#endif
_paramID = FRAME_TYPE;
break;
}
Expand Down
6 changes: 6 additions & 0 deletions libraries/AP_Frsky_Telem/AP_Frsky_SPort_Passthrough.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@ class AP_Frsky_SPort_Passthrough : public AP_Frsky_SPort, public AP_RCTelemetry
BATT_FS_CAPACITY = 3,
BATT_CAPACITY_1 = 4,
BATT_CAPACITY_2 = 5,
TELEMETRY_FEATURES = 6
};

enum PassthroughFeatures : uint8_t {
BIDIR = 0,
SCRIPTING = 1,
};

// methods to convert flight controller data to FrSky SPort Passthrough (OpenTX) format
Expand Down

0 comments on commit b62c2d9

Please sign in to comment.