blob: 376701d36b060311b8ae23b990acf980e0ad515a [file] [log] [blame]
#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
if ARCH_CHIP_ATMEGA
comment "ATMega Configuration Options"
choice
prompt "Atmel ATmega chip selection"
default ARCH_CHIP_ATMEGA128
config ARCH_CHIP_ATMEGA128
bool "ATMega128"
select AVR_HAS_RAMPZ
---help---
Atmel ATMega128 8-bit AVR.
config ARCH_CHIP_ATMEGA1284P
bool "ATMega1284P"
select AVR_HAS_RAMPZ
---help---
Atmel ATMega1284P 8-bit AVR.
config ARCH_CHIP_ATMEGA2560
bool "ATMega2560"
select AVR_HAS_RAMPZ
---help---
Atmel ATMega2560 8-bit AVR.
endchoice # ATMega Configuration Options
menu "ATMega Peripheral Selections"
config AVR_USART0
bool "USART0"
select USART0_SERIALDRIVER
select ARCH_HAVE_SERIAL_TERMIOS
config AVR_USART1
bool "USART1"
select USART1_SERIALDRIVER
select ARCH_HAVE_SERIAL_TERMIOS
endmenu # ATMega Peripheral Selections
endif