Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/compile-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ jobs:
- fqbn: "arduino:samd:nano_33_iot"
artifact-name-suffix: arduino-samd-nano_33_iot
platform-name: arduino:samd
- fqbn: arduino:samd:mkrwan1300
artifact-name-suffix: arduino-samd-mkrwan1300
platform-name: arduino:samd
- fqbn: "arduino:samd:mkrgsm1400"
artifact-name-suffix: arduino-samd-mkrgsm1400
platform-name: arduino:samd
Expand Down
11 changes: 6 additions & 5 deletions src/SecureElementConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@
#ifndef SECURE_ELEMENT_CONFIG_H_
#define SECURE_ELEMENT_CONFIG_H_

#if defined(ARDUINO_AVR_UNO_WIFI_REV2) || \
defined(ARDUINO_SAMD_MKRWIFI1010) || defined(ARDUINO_SAMD_NANO_33_IOT) || \
defined(ARDUINO_SAMD_MKRGSM1400) || defined(ARDUINO_SAMD_MKR1000) || \
defined(ARDUINO_SAMD_MKRNB1500) || defined(ARDUINO_PORTENTA_H7_M7) || \
defined(ARDUINO_NANO_RP2040_CONNECT) || defined(ARDUINO_OPTA) || \
#if defined(ARDUINO_AVR_UNO_WIFI_REV2) ||\
defined(ARDUINO_SAMD_MKRWAN1300) || defined(ARDUINO_SAMD_MKRWAN1310) ||\
defined(ARDUINO_SAMD_MKRWIFI1010) || defined(ARDUINO_SAMD_NANO_33_IOT) ||\
defined(ARDUINO_SAMD_MKRGSM1400) || defined(ARDUINO_SAMD_MKR1000) ||\
defined(ARDUINO_SAMD_MKRNB1500) || defined(ARDUINO_PORTENTA_H7_M7) ||\
defined(ARDUINO_NANO_RP2040_CONNECT) || defined(ARDUINO_OPTA) ||\
defined(ARDUINO_GIGA)
#define SECURE_ELEMENT_IS_ECCX08
#endif
Expand Down
Loading