From a637978a1b6f6591463c8313b80bd0de0772a0e5 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 3 Mar 2014 15:54:38 -0600 Subject: [PATCH] configs/teensy/nettest: Configuration converted to use the kconfig-frontends tools --- arch/avr/src/at90usb/Kconfig | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/arch/avr/src/at90usb/Kconfig b/arch/avr/src/at90usb/Kconfig index 8f9978a5292..238e1cc07e4 100644 --- a/arch/avr/src/at90usb/Kconfig +++ b/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