summaryrefslogtreecommitdiff
path: root/apps/examples/pwm
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-04-25 15:52:00 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-04-25 15:52:00 -0600
commit561c54964b2c99b1709fa79ee98aea31e7d7d449 (patch)
treec6f4c2610a9850b76b54b9716d3c51bdf4af3e56 /apps/examples/pwm
parent1ffc15c3233c8d61953fc2ebc80b5d3c46fc429f (diff)
downloadpx4-nuttx-561c54964b2c99b1709fa79ee98aea31e7d7d449.tar.gz
px4-nuttx-561c54964b2c99b1709fa79ee98aea31e7d7d449.tar.bz2
px4-nuttx-561c54964b2c99b1709fa79ee98aea31e7d7d449.zip
Various Kconfig files still have references to CONFIG_ variables. Some in harmless comments, some in config definionts which is not harmless. All removed
Diffstat (limited to 'apps/examples/pwm')
-rw-r--r--apps/examples/pwm/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/examples/pwm/Kconfig b/apps/examples/pwm/Kconfig
index 78edd2178..b9b28fd79 100644
--- a/apps/examples/pwm/Kconfig
+++ b/apps/examples/pwm/Kconfig
@@ -35,14 +35,14 @@ config EXAMPLES_PWM_DURATION
default 5 if !EXAMPLES_PWM_PULSECOUNT
---help---
The default PWM pulse train duration in seconds. Used only if the current
- pulse count is zero (pulse countis only supported if CONFIG_PWM_PULSECOUNT
+ pulse count is zero (pulse countis only supported if PWM_PULSECOUNT
is defined). Default: 5 seconds
config EXAMPLES_PWM_PULSECOUNT
int "Default pulse count"
default 0
---help---
- The initial PWM pulse count. This option is only available if CONFIG_PWM_PULSECOUNT
+ The initial PWM pulse count. This option is only available if PWM_PULSECOUNT
is nonzero. Default: 0 (i.e., use the duration, not the count).
endif