Copter: fix RSSI_RANGE param values

The extra .0 after the 5 was causing the mission planner to not display
5V in the dropdown even though the value was 5.
This commit is contained in:
Randy Mackay 2014-09-25 15:31:17 +09:00
parent ab46f2d2fe
commit 0d88b602ec
1 changed files with 2 additions and 2 deletions

View File

@ -197,9 +197,9 @@ const AP_Param::Info var_info[] PROGMEM = {
// @DisplayName: Receiver RSSI voltage range // @DisplayName: Receiver RSSI voltage range
// @Description: Receiver RSSI voltage range // @Description: Receiver RSSI voltage range
// @Units: Volt // @Units: Volt
// @Values: 3.3:3.3V, 5.0:5V // @Values: 3.3:3.3V, 5:5V
// @User: Standard // @User: Standard
GSCALAR(rssi_range, "RSSI_RANGE", 5.0), GSCALAR(rssi_range, "RSSI_RANGE", 5.0f),
// @Param: WP_YAW_BEHAVIOR // @Param: WP_YAW_BEHAVIOR
// @DisplayName: Yaw behaviour during missions // @DisplayName: Yaw behaviour during missions