-
Notifications
You must be signed in to change notification settings - Fork 221
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
Command Denied when trying to set imu rate #728
Comments
Denied would mean that ArduPilot doesn't accept what you're asking. Have you tried a lower rate? This sounds like an ArduPilot issue, not a MAVSDK one to me. |
Yes I had tried a rate of 1Hz as well with same results. |
Can you debug the ArduPilot side and check in code what's happening there? |
@julianoes for sure, I don't know what tools are used to debug Ardupilot, do you have some resources I could read about this? Is it a logfile-based debugging or can I run the software on the flight controller and attach a C++ debugger? |
My first approach would be to try it in SITL. And then my assumption would be that you can use gdb or printfs when you run it in in SITL, at least that's what it would be for PX4. |
Alright, I'll give that a go. |
I am trying to set the imu rate using
System.telemetry.set_rate_imu()
, however the method throws a CommandDenied exception. I am able to set theraw_imu
rate using the respective methodSystem.telemetry.set_rate_imu()
, thus I suspect that Ardupilot is producing/advertising theimu()
mavlink topic. How can I verify this? Is this a known issue?Board: SpeedyBee F405v3
FC Software: Ardupilot 4.5.5
The text was updated successfully, but these errors were encountered: