Skip to content
Snippets Groups Projects
Commit 69cdab9a authored by px4dev's avatar px4dev
Browse files

Fix a typo that caused PWM_SERVO_GET ioctls to fail on the FMU PWM outputs.

parent 91ca80e6
No related branches found
No related tags found
No related merge requests found
......@@ -500,7 +500,7 @@ PX4FMU::pwm_ioctl(file *filp, int cmd, unsigned long arg)
/* FALLTHROUGH */
case PWM_SERVO_GET(0):
case PWM_SERVO_GET(1): {
channel = cmd - PWM_SERVO_SET(0);
channel = cmd - PWM_SERVO_GET(0);
*(servo_position_t *)arg = up_pwm_servo_get(channel);
break;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment