We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
IThe c++ offboard example is not support the latest microdds version. Is there any update on the offboard control example?
The text was updated successfully, but these errors were encountered:
Take a look at https://github.com/Jaeyoung-Lim/px4-offboard.
At this point with microdds I'm not sure if we should keep px4_ros_com or just get it split up into separate standalone examples we can refer to.
Sorry, something went wrong.
Ok, I know that, but it is a python example. I need a cpp offboard node to use my previous cpp-based project.
I got a QoS error when I was running offboard_control. After making the following changes in the code, it can run normally
rclcpp::QoS qos(10); qos.best_effort(); qos.transient_local(); offboard_control_mode_publisher_ = this->create_publisher<OffboardControlMode>("/fmu/in/offboard_control_mode", qos); trajectory_setpoint_publisher_ = this->create_publisher<TrajectorySetpoint>("/fmu/in/trajectory_setpoint", qos); vehicle_command_publisher_ = this->create_publisher<VehicleCommand>("/fmu/in/vehicle_command", qos);
@laylow13 Could you share me the whole code? Obviously, you add qos snippet in the cpp example. Thanks in advance.
No branches or pull requests
IThe c++ offboard example is not support the latest microdds version. Is there any update on the offboard control example?
The text was updated successfully, but these errors were encountered: