new family saml21

This commit is contained in:
sabas1080 2019-11-11 17:29:57 -06:00
parent 5ec3ddbd28
commit 2a8c0e4984
3 changed files with 3 additions and 0 deletions

View file

@ -105,6 +105,7 @@ This procedure was unfortunately not used for the SAMD51 and NRF52840 below.
#### Family list #### Family list
* Microchip (Atmel) SAMD21 - 0x68ed2b88 * Microchip (Atmel) SAMD21 - 0x68ed2b88
* Microchip (Atmel) SAML21 - 0x1851780a
* Microchip (Atmel) SAMD51 - 0x55114460 * Microchip (Atmel) SAMD51 - 0x55114460
* Nordic NRF52840 - 0xada52840 * Nordic NRF52840 - 0xada52840
* ST STM32F103 - 0x5ee21072 * ST STM32F103 - 0x5ee21072

View file

@ -352,6 +352,7 @@ const enums = {
}, },
UF2_FAMILY: { UF2_FAMILY: {
ATSAMD21: 0x68ed2b88, ATSAMD21: 0x68ed2b88,
ATSAML21: 0x1851780a,
ATSAMD51: 0x55114460, ATSAMD51: 0x55114460,
NRF52840: 0x1b57745f, NRF52840: 0x1b57745f,
STM32F103: 0x5ee21072, STM32F103: 0x5ee21072,

View file

@ -14,6 +14,7 @@ UF2_MAGIC_END = 0x0AB16F30 # Ditto
families = { families = {
'SAMD21': 0x68ed2b88, 'SAMD21': 0x68ed2b88,
'SAML21': 0x1851780a,
'SAMD51': 0x55114460, 'SAMD51': 0x55114460,
'NRF52': 0x1b57745f, 'NRF52': 0x1b57745f,
'STM32F1': 0x5ee21072, 'STM32F1': 0x5ee21072,