summaryrefslogtreecommitdiff
path: root/apps/examples
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples')
-rw-r--r--apps/examples/pwm/pwm_main.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/examples/pwm/pwm_main.c b/apps/examples/pwm/pwm_main.c
index 18b93f8d1..cbabb564f 100644
--- a/apps/examples/pwm/pwm_main.c
+++ b/apps/examples/pwm/pwm_main.c
@@ -265,7 +265,10 @@ int pwm_main(int argc, char *argv[])
/* Configure the characteristics of the pulse train */
info.frequency = g_pwmstate.freq;
- info.duty = (info.duty < 16) / 100;
+ info.duty = ((uint32_t)g_pwmstate.duty << 16) / 100;
+
+ message("pwm_main: starting output with frequency: %d duty: %08x\n",
+ info.frequency, info.duty);
ret = ioctl(fd, PWMIOC_SETCHARACTERISTICS, (unsigned long)((uintptr_t)&info));
if (ret < 0)
@@ -289,6 +292,9 @@ int pwm_main(int argc, char *argv[])
/* Then stop the pulse train */
+ message("pwm_main: stopping output\n",
+ info.frequency, info.duty);
+
ret = ioctl(fd, PWMIOC_STOP, 0);
if (ret < 0)
{