From 4933d1dbbd8146ec548168fb9b855009107078ca Mon Sep 17 00:00:00 2001 From: Simon Wilks Date: Fri, 28 Sep 2012 08:37:24 +0200 Subject: Only provide update rate mod support to modes supporting 4 PWM channels --- apps/px4/fmu/fmu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/px4') diff --git a/apps/px4/fmu/fmu.cpp b/apps/px4/fmu/fmu.cpp index d8f824c53..48d338c99 100644 --- a/apps/px4/fmu/fmu.cpp +++ b/apps/px4/fmu/fmu.cpp @@ -625,7 +625,7 @@ fmu_main(int argc, char *argv[]) /* look for the optional pwm update rate for the supported modes */ if (strcmp(argv[i], "-u") == 0 || strcmp(argv[i], "--update-rate") == 0) { - if (new_mode == PORT_FULL_PWM || new_mode == PORT_PWM_AND_SERIAL || new_mode == PORT_PWM_AND_GPIO) { + if (new_mode == PORT_FULL_PWM || new_mode == PORT_PWM_AND_GPIO) { if (argc > i + 1) { pwm_update_rate_in_hz = atoi(argv[i + 1]); } else { @@ -633,7 +633,7 @@ fmu_main(int argc, char *argv[]) return 1; } } else { - fprintf(stderr, "pwm update rate currently only supported for mode_pwm, mode_gpio_serial, mode_pwm_gpio\n"); + fprintf(stderr, "pwm update rate currently only supported for mode_pwm, mode_pwm_gpio\n"); } } } -- cgit v1.2.3