mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-15 08:26:04 +08:00
added Pico and additional Teensy defines (#1444)
* Print test names at test time (#1343) * Fix operator| conflict with std::ranges (#1395) * added Pico and additional Teensy defines * fix format --------- Co-authored-by: Roland Reichwein <Roland.Reichwein@bmw.de> Co-authored-by: John Wellbelove <john.wellbelove@etlcpp.com> Co-authored-by: SamHalvoe <SamHalvoe@users.noreply.github.com> Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com>
This commit is contained in:
parent
652034603b
commit
6bb9841dae
@ -18,6 +18,22 @@
|
||||
#define ARDUINO_BOARD "Teensy 3.5"
|
||||
#elif defined(__MK66FX1M0__)
|
||||
#define ARDUINO_BOARD "Teensy 3.6"
|
||||
#elif defined(ARDUINO_TEENSY40)
|
||||
#define ARDUINO_BOARD "Teensy 4.0"
|
||||
#elif defined(ARDUINO_TEENSY41)
|
||||
#define ARDUINO_BOARD "Teensy 4.1"
|
||||
#elif defined(ARDUINO_TEENSY_MICROMOD)
|
||||
#define ARDUINO_BOARD "Teensy MicroMod"
|
||||
#else
|
||||
#define ARDUINO_BOARD "Unknown"
|
||||
#endif
|
||||
|
||||
#elif defined(CORE_ARDUINO_PICO)
|
||||
|
||||
#if defined(PICO_RP2040)
|
||||
#define ARDUINO_BOARD "RP2040"
|
||||
#elif defined(PICO_RP2350)
|
||||
#define ARDUINO_BOARD "RP2350"
|
||||
#else
|
||||
#define ARDUINO_BOARD "Unknown"
|
||||
#endif
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user