Browse Source

Fix file download linter warnings

v_master
Sara Damiano 5 years ago
parent
commit
00936e9361
2 changed files with 7 additions and 7 deletions
  1. +4
    -4
      examples/FileDownload/FileDownload.ino
  2. +3
    -3
      src/TinyGsmClientSIM800.h

+ 4
- 4
examples/FileDownload/FileDownload.ino View File

@ -78,13 +78,13 @@ const char wifiPass[] = "YourWiFiPass";
const char server[] = "vsh.pp.ua"; const char server[] = "vsh.pp.ua";
const int port = 80; const int port = 80;
#include <TinyGsmClient.h>
#include <CRC32.h>
const char resource[] = "/TinyGSM/test_1k.bin"; const char resource[] = "/TinyGSM/test_1k.bin";
uint32_t knownCRC32 = 0x6f50d767; uint32_t knownCRC32 = 0x6f50d767;
uint32_t knownFileSize = 1024; // In case server does not send it uint32_t knownFileSize = 1024; // In case server does not send it
#include <TinyGsmClient.h>
#include <CRC32.h>
#ifdef DUMP_AT_COMMANDS #ifdef DUMP_AT_COMMANDS
#include <StreamDebugger.h> #include <StreamDebugger.h>
StreamDebugger debugger(SerialAT, SerialMon); StreamDebugger debugger(SerialAT, SerialMon);
@ -123,7 +123,7 @@ void setup() {
void printPercent(uint32_t readLength, uint32_t contentLength) { void printPercent(uint32_t readLength, uint32_t contentLength) {
// If we know the total length // If we know the total length
if (contentLength != -1) {
if (contentLength != (uint32_t)-1) {
SerialMon.print("\r "); SerialMon.print("\r ");
SerialMon.print((100.0 * readLength) / contentLength); SerialMon.print((100.0 * readLength) / contentLength);
SerialMon.print('%'); SerialMon.print('%');


+ 3
- 3
src/TinyGsmClientSIM800.h View File

@ -711,9 +711,12 @@ TINY_GSM_MODEM_WAIT_FOR_NETWORK()
return true; return true;
} }
float getTemperature() TINY_GSM_ATTR_NOT_AVAILABLE;
/* /*
* NTP server functions * NTP server functions
*/ */
boolean isValidNumber(String str) { boolean isValidNumber(String str) {
if(!(str.charAt(0) == '+' || str.charAt(0) == '-' || isDigit(str.charAt(0)))) return false; if(!(str.charAt(0) == '+' || str.charAt(0) == '-' || isDigit(str.charAt(0)))) return false;
@ -743,7 +746,6 @@ TINY_GSM_MODEM_WAIT_FOR_NETWORK()
} }
byte NTPServerSync(String server = "pool.ntp.org", byte TimeZone = 3) { byte NTPServerSync(String server = "pool.ntp.org", byte TimeZone = 3) {
//Serial.println("Sync time with NTP server.");
sendAT(GF("+CNTPCID=1")); sendAT(GF("+CNTPCID=1"));
if (waitResponse(10000L) != 1) { if (waitResponse(10000L) != 1) {
return -1; return -1;
@ -769,8 +771,6 @@ TINY_GSM_MODEM_WAIT_FOR_NETWORK()
return -1; return -1;
} }
float getTemperature() TINY_GSM_ATTR_NOT_AVAILABLE;
/* /*
* Client related functions * Client related functions
*/ */


Loading…
Cancel
Save