-
-
Notifications
You must be signed in to change notification settings - Fork 530
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Waypoint frame not supported #1522
Comments
Could you share code that we could use to reproduce your issue?
What have you tried already? If you spent 2 months on it you may have valuable information to share with us and help debug the issue, so feel free to share! 😊 |
What Jonas said. @FurkanYelbey are you using PX4 or ArduPilot? What mission are you uploading and how? |
I am using PX4 and trying to download some waypoints on my PX4 but it gives me Waypoint frame not supported #include <mavsdk/mavsdk.h> #include using namespace mavsdk; void usage(const std::string& bin_name) shared_ptr get_system(Mavsdk& mavsdk)
} int main(int argc, char** argv)//argc ve argv silindi
} that's my cpp file i tried to update my px4 tried to update MP i changed my pixhawk it was pixhawk 2.4.8 before and now it's Pixhawk4 but it still gives me that Unsupported error. Once time i don't know how did I do but it gave me time out but not not supported error |
I didn't think that was an error about my raspberry but I changed my raspberry and setup ubuntu 18.04 in it |
Which PX4 version? This would be something like v1.12. And which MAVSDK version? |
How can I learn my PX4 version and I use mavsdk 0.42.0 version |
All I can see is firmware is 4.0.7 PX4 |
MAVSDK is failing because it does not support a MAV_CMD_NAV_WAYPOINT that has a frame other than MAV_FRAME_GLOBAL_RELATIVE_ALT_INT. Could you tell us which frame MissionPlanner sent? I don't know if PX4 supports other frames, btw, but I'm assuming that it does since you could upload it.
I don't get that, the latest PX4 version I know is 1.12.x 😅. Isn't Ardupilot at version 4.x? |
Aha, you must be using ArduPilot, so that explains the issue. MAVSDK is not compatible with ArduPilot (yet) but there is work going on to fix that. Looks like we just found another thing that needs work. It has to do with the frame that you select in mission planner. Actually, as an alternative you could just use |
This. And also you could try to change the frame in mission planner (let us know if you manage to do that). This said, adding support for the Ardupilot frame in MAVSDK may be an relatively easy contribution, I believe. Your first step would be to understand which frame Ardupilot supports, and how it differs from MAV_FRAME_GLOBAL_RELATIVE_ALT_INT (as in: how could you convert from the Ardupilot one to MAV_FRAME_GLOBAL_RELATIVE_ALT_INT). Then we could add support for it in MAVDSK. Does that make sense? |
I'm gonna look for it how i can change the frame in mission planner and gonna try with MissionRaw |
Waypoint frame not supported (mission_impl.cpp:529)
I got that error everytime I try to execute cpp in my ubuntu it's happening when I try download_mission command how can I fix that and what does that mean guys? I can't find any solutions for 2 months
The text was updated successfully, but these errors were encountered: