summaryrefslogtreecommitdiff
path: root/nuttx/arch/avr
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-03-03 15:54:38 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-03-03 15:54:38 -0600
commita81634883601b6d67f0c789dee203b324a5f356c (patch)
tree549fa35400cf67767b7d9418ac69853890fafb4c /nuttx/arch/avr
parent5514ba769ebc807eb331671910edfc4ae8e31eb3 (diff)
downloadnuttx-a81634883601b6d67f0c789dee203b324a5f356c.tar.gz
nuttx-a81634883601b6d67f0c789dee203b324a5f356c.tar.bz2
nuttx-a81634883601b6d67f0c789dee203b324a5f356c.zip
configs/teensy/nettest: Configuration converted to use the kconfig-frontends tools
Diffstat (limited to 'nuttx/arch/avr')
-rw-r--r--nuttx/arch/avr/src/at90usb/Kconfig26
1 files changed, 26 insertions, 0 deletions
diff --git a/nuttx/arch/avr/src/at90usb/Kconfig b/nuttx/arch/avr/src/at90usb/Kconfig
index 8f9978a52..238e1cc07 100644
--- a/nuttx/arch/avr/src/at90usb/Kconfig
+++ b/nuttx/arch/avr/src/at90usb/Kconfig
@@ -6,4 +6,30 @@
if ARCH_AT90USB
comment "AT90USB Configuration Options"
+menu "AT90USB Peripheral Selections"
+
+config AVR_SPI
+ bool "SPI"
+ default n
+
+config AVR_USART1
+ bool "USART1"
+ default n
+
+config AVR_USBDEV
+ bool "USB device"
+ default n
+
+config AVR_WDT
+ bool "Watchdog"
+ default n
+
+endmenu # AT90USB Peripheral Selections
+
+config AVR_GPIOIRQ
+ bool "GPIO pin interrupts"
+ default n
+ ---help---
+ Enable support for interrupting GPIO pins
+
endif