You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
some cores have the Arduino API older then 2017 and are missing Print::availbleForWrite function.
workaround:
int BufferedPrint::availableForWrite() {
// int a = target.availableForWrite();
// if (!a) // target doesn't report aFW or is really full
return size - pos; // then return space left in our buffer
// a = a - pos; // what will be left in target after our flush()
// return a < 0 ? 0 : a;
}
The text was updated successfully, but these errors were encountered:
some cores have the Arduino API older then 2017 and are missing Print::availbleForWrite function.
workaround:
The text was updated successfully, but these errors were encountered: