Hi All. Really simple MRE here. Arduino / Teensyduino 1.8.15 / 1.54
Error Message:
It does compile for T4.x (and ESP32 / SAMD for that matter). But, I don't have a board to test it. Any suggestions?
Thanks.
Code:
#include <Arduino.h>
#include <deque>
std::deque<uint8_t> myQueue;
void setup() {
myQueue.push_back(100);
}
void loop() {
}
Error Message:
Code:
d:/arduino-1.8.15/hardware/tools/arm/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv7e-m/fpu\libc.a(lib_a-writer.o): In function `_write_r':
writer.c:(.text._write_r+0x12): undefined reference to `_write'
collect2.exe: error: ld returned 1 exit status
Error compiling for board Teensy 3.5.
Thanks.