PX4 / PX4-Autopilot

PX4 Autopilot Software
https://px4.io
BSD 3-Clause "New" or "Revised" License
8.26k stars 13.41k forks source link

offboard position or attitude setpoints for fixedwing #18961

Closed airsimdevdd closed 2 years ago

airsimdevdd commented 2 years ago

does the fixedwing supports position or attitude setpoints any example code snippet

Jaeyoung-Lim commented 2 years ago

@airsimdevdd You can check which setpoints are supported in https://docs.px4.io/master/en/flight_modes/offboard.html

airsimdevdd commented 2 years ago

sir any example code for fixedwing offboard @Jaeyoung-Lim

Jaeyoung-Lim commented 2 years ago

@airsimdevdd

airsimdevdd commented 2 years ago

offboard_position_ned.py is not working for fixed wing ,its is showing no rc, no offboard failsafe activated and loittering in return mode

Jaeyoung-Lim commented 2 years ago

@airsimdevdd Your problem is not related to this issue. Please provide a detailed explanation on how you are testing so that someone can reporduce your problems. Otherwise it is hard to find out what your problem is.

Are you testing in SITL Gazebo? I think your problem is not related to offboard, but you don't have RC Failsafe disabled for offboard. Have you checked if the problem goes away if you have a virtual joystick in QGC?

airsimdevdd commented 2 years ago

yes i was testing in sitl gazebo for and rc failsafe disabled

Jaeyoung-Lim commented 2 years ago

@airsimdevdd Is it fixed now?

airsimdevdd commented 2 years ago

yes it is fixed positionnedyaw works fine but velocitynedyaw seems not working properly

gurselturkeri commented 6 months ago

@Jaeyoung-Lim

* The PX4 documentation also explains with a code snippet: http://docs.px4.io/master/en/ros/mavros_offboard.html

* mavsdk cpp has some examples: https://mavsdk.mavlink.io/main/en/cpp/examples/offboard_velocity.html

* mavsdk python also has a bunch of examples such as https://github.com/mavlink/MAVSDK-Python/blob/main/examples/offboard_position_ned.py

Is there any offboard mavros example for fixed wing SITL gazebo?