summaryrefslogtreecommitdiffstats
path: root/apps/examples/pwm
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-25 11:45:00 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-25 11:45:00 -0600
commitc9b18b049b09580260188349bb32e91b59f74965 (patch)
tree14929ed18bf0cfc14d32d78825b3f3a47ae7d589 /apps/examples/pwm
parentb756c4b51f51427339bf3649430f8470f64d7a8d (diff)
More fixes to issues noted by cppcheck
Diffstat (limited to 'apps/examples/pwm')
-rw-r--r--apps/examples/pwm/pwm_main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/examples/pwm/pwm_main.c b/apps/examples/pwm/pwm_main.c
index e9a6cc50ed..ba5687541a 100644
--- a/apps/examples/pwm/pwm_main.c
+++ b/apps/examples/pwm/pwm_main.c
@@ -124,14 +124,14 @@ static void pwm_help(FAR struct pwm_state_s *pwm)
"Default: %s Current: %s\n",
CONFIG_EXAMPLES_PWM_DEVPATH, pwm->devpath ? pwm->devpath : "NONE");
printf(" [-f frequency] selects the pulse frequency. "
- "Default: %d Hz Current: %d Hz\n",
+ "Default: %d Hz Current: %u Hz\n",
CONFIG_EXAMPLES_PWM_FREQUENCY, pwm->freq);
printf(" [-d duty] selects the pulse duty as a percentage. "
"Default: %d %% Current: %d %%\n",
CONFIG_EXAMPLES_PWM_DUTYPCT, pwm->duty);
#ifdef CONFIG_PWM_PULSECOUNT
printf(" [-n count] selects the pulse count. "
- "Default: %d Current: %d\n",
+ "Default: %d Current: %u\n",
CONFIG_EXAMPLES_PWM_PULSECOUNT, pwm->count);
#endif
printf(" [-t duration] is the duration of the pulse train in seconds. "
@@ -336,11 +336,11 @@ int pwm_main(int argc, char *argv[])
#ifdef CONFIG_PWM_PULSECOUNT
info.count = g_pwmstate.count;
- printf("pwm_main: starting output with frequency: %d duty: %08x count: %d\n",
+ printf("pwm_main: starting output with frequency: %u duty: %08x count: %u\n",
info.frequency, info.duty, info.count);
#else
- printf("pwm_main: starting output with frequency: %d duty: %08x\n",
+ printf("pwm_main: starting output with frequency: %u duty: %08x\n",
info.frequency, info.duty);
#endif