1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-23 19:21:59 +03:00

Align types: int to unsigned int

Block send SMS until finished operation.
GSM3IO.h. Keeps most of board-dependant pins
Flush buffer after GPRS detach
Delete some references to HardwareSerial.h
Include OFF modem status
This commit is contained in:
Javier Zorzano
2015-01-08 18:36:41 +01:00
parent 20ac20f629
commit 2b14a9349c
16 changed files with 83 additions and 35 deletions

View File

@ -92,7 +92,7 @@ String GSM3ShieldV1ScanNetworks::readNetworks()
String result;
bool inQuotes=false;
int quoteCounter=0;
for(int i=0; i<modemResponse.length();i++)
for(unsigned int i=0; i<modemResponse.length();i++)
{
if(modemResponse[i]=='"')
{