Skip to content

Commit

Permalink
Bug fix for SerialTransfer.h release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PowerBroker2 authored Jul 16, 2020
1 parent 74bfcd7 commit 569a7e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ void loop()
{
// send all received data back to Python
for(uint16_t i=0; i < myTransfer.bytesRead; i++)
myTransfer.txBuff[i] = myTransfer.rxBuff[i];
myTransfer.packet.txBuff[i] = myTransfer.packet.rxBuff[i];

myTransfer.sendData(myTransfer.bytesRead);
}
Expand Down

0 comments on commit 569a7e0

Please sign in to comment.