hey thanks for that tidbit . . . updated the buffer part of the code to do what u said . . .
if (rvCore.available() > 0)
{
// data available
while (true)
{
int avail =...
Im trying to interface a teensy 4.1 to a luckfox pico max using ethernet. The teensy is utlilizing the QNEthernet library and just some basic socket code on the side of the luckfox. The purpose of the setup is to use the teensy as a display...