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
Can you add unsigned to the this line, it will remove warnings about comparing an unsigned long with a signed long at line 1604 & 1655
unsigned long timeoutTime = millis() + TIMEOUT_MS_SERVERRESPONSE;
megaatmega2560\ThingSpeak\src\ThingSpeak.h:1604:29: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(millis() > timeoutTime){
megaatmega2560\ThingSpeak\src\ThingSpeak.h:1655:29: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(millis() > timeoutTime){
Can you add unsigned to the this line, it will remove warnings about comparing an unsigned long with a signed long at line 1604 & 1655
unsigned long timeoutTime = millis() + TIMEOUT_MS_SERVERRESPONSE;
megaatmega2560\ThingSpeak\src\ThingSpeak.h:1604:29: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(millis() > timeoutTime){
megaatmega2560\ThingSpeak\src\ThingSpeak.h:1655:29: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(millis() > timeoutTime){
thingspeak-arduino/src/ThingSpeak.h
Line 1600 in 9aceb14
The text was updated successfully, but these errors were encountered: