diff options
Diffstat (limited to 'src/atsamd/Kconfig')
-rw-r--r-- | src/atsamd/Kconfig | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/atsamd/Kconfig b/src/atsamd/Kconfig index 68232acd..4832a632 100644 --- a/src/atsamd/Kconfig +++ b/src/atsamd/Kconfig @@ -21,6 +21,9 @@ choice config MACH_SAMD21G18 bool "SAMD21G18 (Arduino Zero)" select MACH_SAMD21 + config MACH_SAMD21E18 + bool "SAMD21E18 (Adafruit Trinket M0)" + select MACH_SAMD21 config MACH_SAMD51G19 bool "SAMD51G19 (Adafruit ItsyBitsy M4)" select MACH_SAMD51 @@ -43,6 +46,7 @@ config MACH_SAMD51 config MCU string default "samd21g18a" if MACH_SAMD21G18 + default "samd21e18a" if MACH_SAMD21E18 default "samd51g19a" if MACH_SAMD51G19 default "samd51j19a" if MACH_SAMD51J19 default "samd51n19a" if MACH_SAMD51N19 @@ -55,13 +59,13 @@ config CLOCK_FREQ config FLASH_SIZE hex - default 0x40000 if MACH_SAMD21G18 + default 0x40000 if MACH_SAMD21G18 || MACH_SAMD21E18 default 0x80000 if MACH_SAMD51G19 || MACH_SAMD51J19 || MACH_SAMD51N19 default 0x100000 if MACH_SAMD51P20 config RAM_SIZE hex - default 0x8000 if MACH_SAMD21G18 + default 0x8000 if MACH_SAMD21G18 || MACH_SAMD21E18 default 0x30000 if MACH_SAMD51G19 || MACH_SAMD51J19 || MACH_SAMD51N19 default 0x40000 if MACH_SAMD51P20 |