Merge pull request #95 from AndrolGenhald/fix_off_by_one_comment
Fix off by one error in comment
This commit is contained in:
commit
45a5b189a2
|
|
@ -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("."));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue