mirror of
https://github.com/meshtastic/firmware.git
synced 2025-05-08 22:37:46 +00:00
fix sign comparsion
This commit is contained in:
parent
5f948c09fe
commit
5f45a10db5
@ -5,6 +5,8 @@ You probably don't care about this section - skip to the next one.
|
|||||||
## before next release
|
## before next release
|
||||||
|
|
||||||
* fix github actions per sasha tip
|
* 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
|
* DONE sendtext busted in portduino, due to bytetime calculations
|
||||||
* remove linux dependency in native build
|
* remove linux dependency in native build
|
||||||
* DONE tcp stream problem in python+pordtuino, server thinks client dropped when client DID NOT DROP
|
* 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
|
* make sure USB still works in android
|
||||||
* add portduino builds to zip
|
* add portduino builds to zip
|
||||||
* add license to portduino and make announcement
|
* 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 naks are being dropped (though enqueuedLocal) sometimes before phone/PC gets them
|
||||||
* DONE have android fill in if local GPS has poor signal
|
* DONE have android fill in if local GPS has poor signal
|
||||||
* release to beta and amazon
|
* release to beta and amazon
|
||||||
* fix heltec battery scaling
|
|
||||||
* add reference counting to mesh packets
|
* add reference counting to mesh packets
|
||||||
* allow multiple simultanteous phoneapi connections
|
* allow multiple simultanteous phoneapi connections
|
||||||
* DONE split position.time and last_heard
|
* DONE split position.time and last_heard
|
||||||
|
@ -40,7 +40,7 @@ size_t RedirectablePrint::vprintf(const char *format, va_list arg)
|
|||||||
va_end(arg);
|
va_end(arg);
|
||||||
return 0;
|
return 0;
|
||||||
};
|
};
|
||||||
if (len >= printBufLen) {
|
if (len >= (int)printBufLen) {
|
||||||
delete[] printBuf;
|
delete[] printBuf;
|
||||||
printBufLen *= 2;
|
printBufLen *= 2;
|
||||||
printBuf = new char[printBufLen];
|
printBuf = new char[printBufLen];
|
||||||
|
Loading…
Reference in New Issue
Block a user