mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-09 01:18:29 -04:00
AP - fix attitude level hil mavlink 1.0 issue
This commit is contained in:
parent
3341eae670
commit
922338e982
@ -1955,7 +1955,7 @@ void GCS_MAVLINK::handleMessage(mavlink_message_t* msg)
|
||||
mavlink_hil_state_t packet;
|
||||
mavlink_msg_hil_state_decode(msg, &packet);
|
||||
|
||||
float vel = sqrt((packet.vx * packet.vx) + (packet.vy * packet.vy));
|
||||
float vel = sqrt((packet.vx * (float)packet.vx) + (packet.vy * (float)packet.vy));
|
||||
float cog = wrap_360(ToDeg(atan2(packet.vx, packet.vy)) * 100);
|
||||
|
||||
// set gps hil sensor
|
||||
|
@ -29,7 +29,6 @@ static const AP_Param::Info var_info[] PROGMEM = {
|
||||
// @Param: KFF_PTCHCOMP
|
||||
// @DisplayName: Pitch Compensation
|
||||
// @Description: Adds pitch input to compensate for the loss of lift due to roll control.
|
||||
// @Units: Percent
|
||||
// @Range: 0 1
|
||||
// @Increment: 0.1
|
||||
// @User: Advanced
|
||||
@ -38,7 +37,6 @@ static const AP_Param::Info var_info[] PROGMEM = {
|
||||
// @Param: KFF_RDDRMIX
|
||||
// @DisplayName: Rudder Mix
|
||||
// @Description: The ammount of rudder mix to apply during aileron movement
|
||||
// @Units: Percent
|
||||
// @Range: 0 1
|
||||
// @Increment: 0.1
|
||||
// @User: Standard
|
||||
@ -70,7 +68,6 @@ static const AP_Param::Info var_info[] PROGMEM = {
|
||||
// @Param: XTRK_GAIN_SC
|
||||
// @DisplayName: Crosstrack Gain
|
||||
// @Description: The scale between distance off the line and angle to meet the line (in Degrees * 100)
|
||||
// @Units: Degrees
|
||||
// @Range: 0 2000
|
||||
// @Increment: 1
|
||||
// @User: Standard
|
||||
|
Loading…
Reference in New Issue
Block a user