diff --git a/docs/software/TODO.md b/docs/software/TODO.md index 76b1614cd..d2275110b 100644 --- a/docs/software/TODO.md +++ b/docs/software/TODO.md @@ -5,6 +5,8 @@ You probably don't care about this section - skip to the next one. ## before next release * fix github actions per sasha tip +* @havealoha comments about odd sleep behavior +* fix heltec battery scaling * DONE sendtext busted in portduino, due to bytetime calculations * remove linux dependency in native build * DONE tcp stream problem in python+pordtuino, server thinks client dropped when client DID NOT DROP @@ -12,11 +14,9 @@ You probably don't care about this section - skip to the next one. * make sure USB still works in android * add portduino builds to zip * add license to portduino and make announcement -* @havealoha comments about odd sleep behavior * DONE naks are being dropped (though enqueuedLocal) sometimes before phone/PC gets them * DONE have android fill in if local GPS has poor signal * release to beta and amazon -* fix heltec battery scaling * add reference counting to mesh packets * allow multiple simultanteous phoneapi connections * DONE split position.time and last_heard diff --git a/src/RedirectablePrint.cpp b/src/RedirectablePrint.cpp index 73600b327..d88fbe4ba 100644 --- a/src/RedirectablePrint.cpp +++ b/src/RedirectablePrint.cpp @@ -40,7 +40,7 @@ size_t RedirectablePrint::vprintf(const char *format, va_list arg) va_end(arg); return 0; }; - if (len >= printBufLen) { + if (len >= (int)printBufLen) { delete[] printBuf; printBufLen *= 2; printBuf = new char[printBufLen];