Skip to content
Snippets Groups Projects
Commit acd37d95 authored by Gregory Nutt's avatar Gregory Nutt
Browse files

Various Kconfig files still have references to CONFIG_ variables. Some in...

Various Kconfig files still have references to CONFIG_ variables.  Some in harmless comments, some in config definionts which is not harmless.  All removed
parent 16f8dea7
No related branches found
No related tags found
No related merge requests found
...@@ -35,14 +35,14 @@ config EXAMPLES_PWM_DURATION ...@@ -35,14 +35,14 @@ config EXAMPLES_PWM_DURATION
default 5 if !EXAMPLES_PWM_PULSECOUNT default 5 if !EXAMPLES_PWM_PULSECOUNT
---help--- ---help---
The default PWM pulse train duration in seconds. Used only if the current 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 is defined). Default: 5 seconds
config EXAMPLES_PWM_PULSECOUNT config EXAMPLES_PWM_PULSECOUNT
int "Default pulse count" int "Default pulse count"
default 0 default 0
---help--- ---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). is nonzero. Default: 0 (i.e., use the duration, not the count).
endif endif
...@@ -90,7 +90,7 @@ config EXAMPLES_USBMSC_TRACEINIT ...@@ -90,7 +90,7 @@ config EXAMPLES_USBMSC_TRACEINIT
default n default n
depends on EXAMPLES_USBMSC depends on EXAMPLES_USBMSC
---help--- ---help---
If USBDEV_TRACE is enabled (or CONFIG_DEBUG and CONFIG_DEBUG_USB), If USBDEV_TRACE is enabled (or DEBUG and DEBUG_USB),
then the example code will also manage the USB trace output. The then the example code will also manage the USB trace output. The
amount of trace output can be controlled this configuration value: amount of trace output can be controlled this configuration value:
This setting will show USB initialization events This setting will show USB initialization events
...@@ -100,7 +100,7 @@ config EXAMPLES_USBMSC_TRACECLASS ...@@ -100,7 +100,7 @@ config EXAMPLES_USBMSC_TRACECLASS
default n default n
depends on EXAMPLES_USBMSC depends on EXAMPLES_USBMSC
---help--- ---help---
If USBDEV_TRACE is enabled (or CONFIG_DEBUG and CONFIG_DEBUG_USB), If USBDEV_TRACE is enabled (or DEBUG and DEBUG_USB),
then the example code will also manage the USB trace output. The then the example code will also manage the USB trace output. The
amount of trace output can be controlled this configuration value: amount of trace output can be controlled this configuration value:
This setting will show USB class driver events This setting will show USB class driver events
...@@ -110,7 +110,7 @@ config EXAMPLES_USBMSC_TRACETRANSFERS ...@@ -110,7 +110,7 @@ config EXAMPLES_USBMSC_TRACETRANSFERS
default n default n
depends on EXAMPLES_USBMSC depends on EXAMPLES_USBMSC
---help--- ---help---
If USBDEV_TRACE is enabled (or CONFIG_DEBUG and CONFIG_DEBUG_USB), If USBDEV_TRACE is enabled (or DEBUG and DEBUG_USB),
then the example code will also manage the USB trace output. The then the example code will also manage the USB trace output. The
amount of trace output can be controlled this configuration value: amount of trace output can be controlled this configuration value:
This setting will show USB data transfer events This setting will show USB data transfer events
...@@ -120,7 +120,7 @@ config EXAMPLES_USBMSC_TRACECONTROLLER ...@@ -120,7 +120,7 @@ config EXAMPLES_USBMSC_TRACECONTROLLER
default n default n
depends on EXAMPLES_USBMSC depends on EXAMPLES_USBMSC
---help--- ---help---
If USBDEV_TRACE is enabled (or CONFIG_DEBUG and CONFIG_DEBUG_USB), If USBDEV_TRACE is enabled (or DEBUG and DEBUG_USB),
then the example code will also manage the USB trace output. The then the example code will also manage the USB trace output. The
amount of trace output can be controlled this configuration value: amount of trace output can be controlled this configuration value:
This setting will show USB device controller events This setting will show USB device controller events
...@@ -130,7 +130,7 @@ config EXAMPLES_USBMSC_TRACEINTERRUPTS ...@@ -130,7 +130,7 @@ config EXAMPLES_USBMSC_TRACEINTERRUPTS
default n default n
depends on EXAMPLES_USBMSC depends on EXAMPLES_USBMSC
---help--- ---help---
If USBDEV_TRACE is enabled (or CONFIG_DEBUG and CONFIG_DEBUG_USB), If USBDEV_TRACE is enabled (or DEBUG and DEBUG_USB),
then the example code will also manage the USB trace output. The then the example code will also manage the USB trace output. The
amount of trace output can be controlled this configuration value: amount of trace output can be controlled this configuration value:
This setting will show USB device controller interrupt-related events. This setting will show USB device controller interrupt-related events.
...@@ -17,14 +17,14 @@ config EXAMPLES_WATCHDOG_DEVPATH ...@@ -17,14 +17,14 @@ config EXAMPLES_WATCHDOG_DEVPATH
---help--- ---help---
The path to the watchdog device. Default: /dev/watchdog0 The path to the watchdog device. Default: /dev/watchdog0
config CONFIG_EXAMPLES_WATCHDOG_PINGTIME config EXAMPLES_WATCHDOG_PINGTIME
int "Watchdog ping time" int "Watchdog ping time"
default 5000 default 5000
---help--- ---help---
Time in milliseconds that the example will ping the watchdog before letting the Time in milliseconds that the example will ping the watchdog before letting the
watchdog expire. Default: 5000 milliseconds. watchdog expire. Default: 5000 milliseconds.
config CONFIG_EXAMPLES_WATCHDOG_PINGDELAY config EXAMPLES_WATCHDOG_PINGDELAY
int "Watchdog ping delay" int "Watchdog ping delay"
default 500 default 500
---help--- ---help---
......
...@@ -33,7 +33,7 @@ config DISCOVER_DEVICE_CLASS ...@@ -33,7 +33,7 @@ config DISCOVER_DEVICE_CLASS
hex "Network Discovery Class" hex "Network Discovery Class"
default 0xff default 0xff
config CONFIG_DISCOVER_DESCR config DISCOVER_DESCR
string "Discoverer Description" string "Discoverer Description"
default "NuttX" default "NuttX"
......
...@@ -50,10 +50,10 @@ config NETUTILS_HTTPD_CGIPATH ...@@ -50,10 +50,10 @@ config NETUTILS_HTTPD_CGIPATH
httpd_cgi_register(&a[i]); httpd_cgi_register(&a[i]);
} }
Where (under CONFIG_NETUTILS_HTTPD_CGIPATH) the "/xyz" is a URL path, Where (under NETUTILS_HTTPD_CGIPATH) the "/xyz" is a URL path,
rather than a %! xyz style call in the existing manner. rather than a %! xyz style call in the existing manner.
This is useful when CONFIG_NETUTILS_HTTPD_SCRIPT_DISABLE is defined. This is useful when NETUTILS_HTTPD_SCRIPT_DISABLE is defined.
In other words, this provides a way to get your CGI functions called In other words, this provides a way to get your CGI functions called
without needing the scripting language. I'm using this to provide a without needing the scripting language. I'm using this to provide a
......
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