Add debug for XModem transfer failure

This commit is contained in:
Tom Nisbet 2020-10-07 12:04:20 -04:00
parent 910d07fb58
commit 3c4de71cd8
1 changed files with 2 additions and 1 deletions

View File

@ -57,6 +57,7 @@ uint32_t XModem::ReceiveFile(uint32_t address)
// Fail the transfer on anything else
cmdStatus.error("Unexpected character received waiting for next packet.");
cmdStatus.setValueDec(0, "char", c);
cmdStatus.setValueDec(1, "seq", seq);
return 0;
break;
}
@ -103,7 +104,7 @@ bool XModem::SendFile(uint32_t address, uint32_t fileSize)
bytesSent += PKTLEN;
}
// Signal end of transfer and process the ACK
// Signal end of transfer and process the ACK
Serial.write(XMDM_EOT);
rxChar = GetChar(5000);
if (rxChar != XMDM_ACK)