Fix file download linter warnings

This commit is contained in:
Sara Damiano
2019-07-17 10:50:11 -04:00
parent 0b5d650b04
commit 00936e9361
2 changed files with 7 additions and 7 deletions

View File

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