summaryrefslogtreecommitdiff
path: root/nuttx/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-04-05 12:46:53 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-04-05 12:46:53 -0600
commit594a880b04392f88c5360c60eba4e61a1e3bc5ff (patch)
tree431262f8ab626833e3dafbe157d4424647cbe520 /nuttx/Kconfig
parent696f87f65565f2e37221177c1287b55d91a3e9bf (diff)
downloadpx4-nuttx-594a880b04392f88c5360c60eba4e61a1e3bc5ff.tar.gz
px4-nuttx-594a880b04392f88c5360c60eba4e61a1e3bc5ff.tar.bz2
px4-nuttx-594a880b04392f88c5360c60eba4e61a1e3bc5ff.zip
fix LPC177x/8x GPIO debug instrumentation
Diffstat (limited to 'nuttx/Kconfig')
-rw-r--r--nuttx/Kconfig52
1 files changed, 40 insertions, 12 deletions
diff --git a/nuttx/Kconfig b/nuttx/Kconfig
index 904cb511a..7b98704bd 100644
--- a/nuttx/Kconfig
+++ b/nuttx/Kconfig
@@ -398,71 +398,99 @@ config DEBUG_LCD
default n
depends on LCD
---help---
- Enable low level debug SYSLOG output from the LCD driver (disabled by default)
+ Enable low level debug SYSLOG output from the LCD driver (disabled
+ by default). Support for this debug option is board-specific and
+ may not be available for some boards.
config DEBUG_LEDS
bool "Enable Low-level LED Debug Output"
default n
depends on ARCH_HAVE_LEDS
---help---
- Enable low level debug from board-specific LED logic
+ Enable low level debug from board-specific LED logic. Support for
+ this debug option is board-specific and may not be available for
+ some boards.
config DEBUG_INPUT
bool "Enable Input Device Debug Output"
default n
depends on INPUT
---help---
- Enable low level debug SYSLOG output from the input device drivers such as
- mice and touchscreens (disabled by default)
+ Enable low level debug SYSLOG output from the input device drivers
+ such as mice and touchscreens (disabled by default). Support for
+ this debug option is board-specific and may not be available for
+ some boards.
config DEBUG_ANALOG
bool "Enable Analog Device Debug Output"
default n
---help---
- Enable low level debug SYSLOG output from the analog device drivers such as
- A/D and D/A converters (disabled by default)
+ Enable low level debug SYSLOG output from the analog device drivers
+ such as A/D and D/A converters (disabled by default). Support for
+ this debug option is architecgture-specific and may not be available
+ for some MCUs.
config DEBUG_I2C
bool "Enable I2C Debug Output"
default n
depends on I2C
---help---
- Enable I2C driver debug SYSLOG output (disabled by default)
+ Enable I2C driver debug SYSLOG output (disabled by default).
+ Support for this debug option is architecgture-specific and may not
+ be available for some MCUs.
config DEBUG_SPI
bool "Enable SPI Debug Output"
default n
depends on SPI
---help---
- Enable I2C driver debug SYSLOG output (disabled by default)
+ Enable I2C driver debug SYSLOG output (disabled by default).
+ Support for this debug option is architecgture-specific and may not
+ be available for some MCUs.
config DEBUG_CAN
bool "Enable CAN Debug Output"
default n
depends on CAN
---help---
- Enable CAN driver debug SYSLOG output (disabled by default)
+ Enable CAN driver debug SYSLOG output (disabled by default).
+ Support for this debug option is architecgture-specific and may not
+ be available for some MCUs.
config DEBUG_SDIO
bool "Enable SDIO Debug Output"
default n
depends on MMCSD_SDIO
---help---
- Enable SDIO driver debug SYSLOG output (disabled by default)
+ Enable SDIO driver debug SYSLOG output (disabled by default).
+ Support for this debug option is architecgture-specific and may not
+ be available for some MCUs.
+
+config DEBUG_GPIO
+ bool "Enable GPIO Debug Output"
+ default n
+ ---help---
+ Enable GPIO-releated debug SYSLOG output (disabled by default).
+ Support for this debug option is architecgture-specific and may not
+ be available for some MCUs.
config DEBUG_DMA
bool "Enable DMA Debug Output"
default n
depends on ARCH_DMA
---help---
- Enable DMA-releated debug SYSLOG output (disabled by default)
+ Enable DMA-releated debug SYSLOG output (disabled by default).
+ Support for this debug option is architecgture-specific and may not
+ be available for some MCUs.
config DEBUG_WATCHDOG
bool "Enable Watchdog Timer Debug Output"
default n
depends on WATCHDOG
---help---
- Enable watchdog timer debug SYSLOG output (disabled by default)
+ Enable watchdog timer debug SYSLOG output (disabled by default).
+ Support for this debug option is architecgture-specific and may not
+ be available for some MCUs.
endif