blob: cecefdf41fe354dbbe7b5592cc55d580e33bb7a6 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | config MMCU
    string
    default "atmega328p" if ATMEGA328P
    default "attiny85" if ATTINY85
    default "attiny4313" if ATTINY4313
    
choice MCU
    prompt "Microcontroller (MMCU)"
source "$IOEROOT/include/mcu/atmega328p.Kconfig"
source "$IOEROOT/include/mcu/attiny85.Kconfig"
source "$IOEROOT/include/mcu/attiny4313.Kconfig"
endchoice
 |