You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are dealing with this error. The problem is also that the new mavros dependency, GeographicLib, needs to have a file downloaded in order to work. If not, you will compile but you will have an execution error.
In backend_mavros.cpp line 135:
flight_mode_service.response.success ? "true" : "false");
SetMode.Response.success has been changed to SetMode.Response.mode_sent, so it must be:
flight_mode_service.response.mode_sent ? "true" : "false");
Source:
mavlink/mavros@599c588
The text was updated successfully, but these errors were encountered: