Skip to content

Commit

Permalink
Move VTX entry to next group. Squash afterwards.
Browse files Browse the repository at this point in the history
  • Loading branch information
menschel committed Nov 13, 2024
1 parent a315bad commit bf88dc0
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions libraries/AP_OSD/AP_OSD_Screen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1045,23 +1045,6 @@ const AP_Param::GroupInfo AP_OSD_Screen::var_info[] = {
AP_SUBGROUPINFO(rrpm, "RPM", 62, AP_OSD_Screen, AP_OSD_Setting),
#endif


// @Param: VTX_TEMP_EN
// @DisplayName: VTX_TEMP_EN
// @Description: Displays the VTX Temperature. A Value of '-1' indicates that temperature is not available.
// @Values: 0:Disabled,1:Enabled

// @Param: VTX_TEMP_X
// @DisplayName: VTX_TEMP_X
// @Description: Horizontal position on screen for VTX_TEMP item
// @Range: 0 59

// @Param: VTX_TEMP_Y
// @DisplayName: VTX_TEMP_Y
// @Description: Vertical position on screen for VTX_TEMP item
// @Range: 0 21
AP_SUBGROUPINFO(vtx_temp, "VTX_TEMP", 63, AP_OSD_Screen, AP_OSD_Setting),

AP_GROUPEND
};

Expand Down Expand Up @@ -1191,6 +1174,22 @@ const AP_Param::GroupInfo AP_OSD_Screen::var_info2[] = {
AP_GROUPINFO("ESC_IDX", 10, AP_OSD_Screen, esc_index, 0),
#endif

// @Param: VTX_TEMP_EN
// @DisplayName: VTX_TEMP_EN
// @Description: Displays the VTX Temperature. A Value of '-1' indicates that temperature is not available.
// @Values: 0:Disabled,1:Enabled

// @Param: VTX_TEMP_X
// @DisplayName: VTX_TEMP_X
// @Description: Horizontal position on screen for VTX_TEMP item
// @Range: 0 59

// @Param: VTX_TEMP_Y
// @DisplayName: VTX_TEMP_Y
// @Description: Vertical position on screen for VTX_TEMP item
// @Range: 0 21
AP_SUBGROUPINFO(vtx_temp, "VTX_TEMP", 11, AP_OSD_Screen, AP_OSD_Setting),

AP_GROUPEND
};

Expand Down

0 comments on commit bf88dc0

Please sign in to comment.