Skip to content

Commit 9f77e47

Browse files
authored
Typo fix for #55
1 parent 949a7e2 commit 9f77e47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/file/Arduino/rx_file/rx_file.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ void loop()
3131

3232
for(uint8_t i=sizeof(fileIndex); i<myTransfer.bytesRead; i++)
3333
{
34-
file[fileIndex] = (char)myTransfer.packet.rxBuff[i]);
34+
file[fileIndex] = (char)myTransfer.packet.rxBuff[i];
3535
fileIndex++;
3636
}
3737
}

0 commit comments

Comments
 (0)