Merge pull request #95 from AndrolGenhald/fix_off_by_one_comment

Fix off by one error in comment
This commit is contained in:
Felix Rusu 2018-03-09 10:14:13 -05:00 committed by GitHub
commit 45a5b189a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -230,7 +230,7 @@ uint8_t HandleWirelessHEXData(RFM69 radio, uint8_t remoteID, SPIFlash flash, uin
//===================================================================================================================
// readSerialLine() - reads a line feed (\n) terminated line from the serial stream
// returns # of bytes read, up to 255
// returns # of bytes read, up to 254
// timeout in ms, will timeout and return after so long
// this is called at the OTA programmer side
//===================================================================================================================
@ -522,4 +522,4 @@ void resetUsingWatchdog(uint8_t DEBUG)
if (DEBUG) Serial.print(F("REBOOTING"));
wdt_enable(WDTO_15MS);
while(1) if (DEBUG) Serial.print(F("."));
}
}