aboutsummaryrefslogtreecommitdiff
path: root/nuttx/Kconfig
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-21 15:47:34 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-21 15:47:34 +0000
commit6ea7967d8acf16b2cc2849929faf63f902b208ef (patch)
tree1791765d0da3de267f3cef832bc42efe6e362d55 /nuttx/Kconfig
parent479687966353b92216e1d3eaf35f83a2b4660f21 (diff)
downloadpx4-firmware-6ea7967d8acf16b2cc2849929faf63f902b208ef.tar.gz
px4-firmware-6ea7967d8acf16b2cc2849929faf63f902b208ef.tar.bz2
px4-firmware-6ea7967d8acf16b2cc2849929faf63f902b208ef.zip
Kconfig changes to get a clean STM32 ADC example build
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5246 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/Kconfig')
-rw-r--r--nuttx/Kconfig28
1 files changed, 24 insertions, 4 deletions
diff --git a/nuttx/Kconfig b/nuttx/Kconfig
index 0fe6eb0f7..325759b41 100644
--- a/nuttx/Kconfig
+++ b/nuttx/Kconfig
@@ -244,17 +244,24 @@ config DEBUG_ENABLE
comment "Subsystem Debug Options"
+config DEBUG_MM
+ bool "Enable Memory Manager Debug Output"
+ default n
+ ---help---
+ Enable memory management debug output (disabled by default)
+
config DEBUG_SCHED
bool "Enable Scheduler Debug Output"
default n
---help---
Enable OS debug output (disabled by default)
-config DEBUG_MM
- bool "Enable Memory Manager Debug Output"
+config DEBUG_PAGING
+ bool "Enable Demand Paging Debug Output"
default n
+ depends on PAGING
---help---
- Enable memory management debug output (disabled by default)
+ Enable demand paging debug output (disabled by default)
config DEBUG_NET
bool "Enable Network Debug Output"
@@ -311,6 +318,13 @@ config DEBUG_INPUT
Enable low level debug output from the input device drivers such as
mice and touchscreens (disabled by default)
+config DEBUG_ANALOG
+ bool "Enable Analog Device Debug Output"
+ default n
+ ---help---
+ Enable low level debug output from the analog device drivers such as
+ A/D and D/A converters (disabled by default)
+
config DEBUG_I2C
bool "Enable I2C Debug Output"
default n
@@ -325,12 +339,18 @@ config DEBUG_SPI
---help---
Enable I2C driver debug output (disabled by default)
+config DEBUG_DMA
+ bool "Enable DMA Debug Output"
+ default n
+ ---help---
+ Enable DMA-releated debug output (disabled by default)
+
config DEBUG_WATCHDOG
bool "Enable Watchdog Timer Debug Output"
default n
depends on WATCHDOG
---help---
- Enable watchdog timer debug output (disabled by default)
+ Enable watchdog timer debug output (disabled by default)
endif