I'm sending a pretty long string on the TX4, blocking the run of the other processes.
I tried
uint8_t Serial5_buffer[128];
In the setup
Serial4.begin(115200); // Bluetooth HC05 to Win 10 Tablet
Serial4.addMemoryForWrite(Serial5_buffer, sizeof(Serial5_buffer));
This method worked wonders on my Teensy 4.1 but it won't compile for the 3.5.
I get 'class HardwareSerial4' has no member named 'addMemoryForWrite'
Is there still a way?
If not, should I move this communication on another UART?
Thanks a lot
Mitch
no one answered this on the teensy forum.... please help.