mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
AP_RCMapper: improved docs for RCMAP_*
This commit is contained in:
parent
a1f64d606a
commit
45b385cf81
@ -6,7 +6,7 @@
|
||||
const AP_Param::GroupInfo RCMapper::var_info[] PROGMEM = {
|
||||
// @Param: ROLL
|
||||
// @DisplayName: Roll channel
|
||||
// @Description: Roll channel number
|
||||
// @Description: Roll channel number. This is useful when you have a RC transmitter that can't change the channel order easily. Roll is normally on channel 1, but you can move it to any channel with this parameter.
|
||||
// @Range: 1 8
|
||||
// @Increment: 1
|
||||
// @User: Advanced
|
||||
@ -14,23 +14,26 @@ const AP_Param::GroupInfo RCMapper::var_info[] PROGMEM = {
|
||||
|
||||
// @Param: PITCH
|
||||
// @DisplayName: Pitch channel
|
||||
// @Description: Pitch channel number
|
||||
// @Description: Pitch channel number. This is useful when you have a RC transmitter that can't change the channel order easily. Pitch is normally on channel 2, but you can move it to any channel with this parameter.
|
||||
// @Range: 1 8
|
||||
// @Increment: 1
|
||||
// @User: Advanced
|
||||
AP_GROUPINFO("PITCH", 1, RCMapper, _ch_pitch, 2),
|
||||
|
||||
// @Param: THROTTLE
|
||||
// @DisplayName: Throttle channel
|
||||
// @Description: Throttle channel number
|
||||
// @Description: Throttle channel number. This is useful when you have a RC transmitter that can't change the channel order easily. Throttle is normally on channel 3, but you can move it to any channel with this parameter.
|
||||
// @Range: 1 8
|
||||
// @Increment: 1
|
||||
// @User: Advanced
|
||||
AP_GROUPINFO("THROTTLE", 2, RCMapper, _ch_throttle, 3),
|
||||
|
||||
// @Param: YAW
|
||||
// @DisplayName: Yaw channel
|
||||
// @Description: Yaw channel number
|
||||
// @Description: Yaw channel number. This is useful when you have a RC transmitter that can't change the channel order easily. Yaw (also known as rudder) is normally on channel 4, but you can move it to any channel with this parameter.
|
||||
// @Range: 1 8
|
||||
// @Increment: 1
|
||||
// @User: Advanced
|
||||
AP_GROUPINFO("YAW", 3, RCMapper, _ch_yaw, 4),
|
||||
|
||||
AP_GROUPEND
|
||||
|
Loading…
Reference in New Issue
Block a user