Skip to content

Commit 1b9b7fb

Browse files
authored
Merge pull request #20 from pennam/mkrwan
Add support for MKRWAN
2 parents 3a48015 + 720f90e commit 1b9b7fb

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/compile-examples.yml

+3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ jobs:
4444
- fqbn: "arduino:samd:nano_33_iot"
4545
artifact-name-suffix: arduino-samd-nano_33_iot
4646
platform-name: arduino:samd
47+
- fqbn: arduino:samd:mkrwan1300
48+
artifact-name-suffix: arduino-samd-mkrwan1300
49+
platform-name: arduino:samd
4750
- fqbn: "arduino:samd:mkrgsm1400"
4851
artifact-name-suffix: arduino-samd-mkrgsm1400
4952
platform-name: arduino:samd

src/SecureElementConfig.h

+6-5
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@
1111
#ifndef SECURE_ELEMENT_CONFIG_H_
1212
#define SECURE_ELEMENT_CONFIG_H_
1313

14-
#if defined(ARDUINO_AVR_UNO_WIFI_REV2) || \
15-
defined(ARDUINO_SAMD_MKRWIFI1010) || defined(ARDUINO_SAMD_NANO_33_IOT) || \
16-
defined(ARDUINO_SAMD_MKRGSM1400) || defined(ARDUINO_SAMD_MKR1000) || \
17-
defined(ARDUINO_SAMD_MKRNB1500) || defined(ARDUINO_PORTENTA_H7_M7) || \
18-
defined(ARDUINO_NANO_RP2040_CONNECT) || defined(ARDUINO_OPTA) || \
14+
#if defined(ARDUINO_AVR_UNO_WIFI_REV2) ||\
15+
defined(ARDUINO_SAMD_MKRWAN1300) || defined(ARDUINO_SAMD_MKRWAN1310) ||\
16+
defined(ARDUINO_SAMD_MKRWIFI1010) || defined(ARDUINO_SAMD_NANO_33_IOT) ||\
17+
defined(ARDUINO_SAMD_MKRGSM1400) || defined(ARDUINO_SAMD_MKR1000) ||\
18+
defined(ARDUINO_SAMD_MKRNB1500) || defined(ARDUINO_PORTENTA_H7_M7) ||\
19+
defined(ARDUINO_NANO_RP2040_CONNECT) || defined(ARDUINO_OPTA) ||\
1920
defined(ARDUINO_GIGA)
2021
#define SECURE_ELEMENT_IS_ECCX08
2122
#endif

0 commit comments

Comments
 (0)