Hello, I am working on a project where I use PX4 with an MC (mission computer). I have delegated the drone control to the MC and I am managing the controls from there. In my initial work, I was using MicroXRCEAgent
to communicate with ROS2 for controlling the drone.
Is it logical to use MicroXRCEAgent, also known as uXRCE-DDS (PX4-ROS 2/DDS Bridge)? Additionally, another module is added for communication. Isn’t it safer to control directly in offboard mode via MAVLink or MAVSDK?
My goal is to access as many components of the drone as possible. Which is safer to use and allows for greater control over PX4: MAVROS, MAVLink, or MAVSDK
What is the difference between MAVROS, MAVLink, and MAVSDK? Is the difference only in the communication methods, or does one allow you to easily access IMU data while the others do not?
I am actively using ROS2 in my system, but I want the communication with PX4 to be fast. I don’t want to wait for the ‘uXRCE-DDS’ connection time, and additionally, it sometimes doesn’t work. I don’t want to have issues like this
I chose uXRCE-DDS because it allowed for easier coding, but now I want the system connections to be more robust. My primary goal is security. Which one would be more appropriate to use in this case?"