Add support for Teensy 4.x
Teensy 4.x doesn't support exidx calls (yet), this fixes support for Teensy 4.x.
This commit is contained in:
parent
f20f619947
commit
226307d0bd
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
#include "SSLClientParameters.h"
|
#include "SSLClientParameters.h"
|
||||||
|
|
||||||
// fix for non-exception arduino platforms
|
// fix for non-exception arduino platforms (Feather and Teensy 4.0)
|
||||||
#ifdef ADAFRUIT_FEATHER_M0
|
#if defined ADAFRUIT_FEATHER_M0 || defined __IMXRT1062__
|
||||||
namespace std {
|
namespace std {
|
||||||
void __throw_length_error(char const*) {}
|
void __throw_length_error(char const*) {}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue