Browse Source

formatting fix

v_master
Sara Damiano 6 years ago
parent
commit
9dee2ede57
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/TinyGsmClientSIM800.h

+ 2
- 1
src/TinyGsmClientSIM800.h View File

@ -147,7 +147,8 @@ public:
// Workaround: sometimes SIM800 forgets to notify about data arrival.
// TODO: Currently we ping the module periodically,
// but maybe there's a better indicator that we need to poll
if (millis() - prev_check > 250) {
if (millis() - prev_check > 250)
{
got_data = true;
prev_check = millis();
}


Loading…
Cancel
Save