Skip to content

Commit

Permalink
Merge branch 'master' into release/v3.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
me-no-dev authored Oct 25, 2024
2 parents a805e06 + 74e4a74 commit 804ee12
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,11 @@ void onReceiveFunction() {
received_bytes = received_bytes + available;
Serial.printf("onReceive Callback:: There are %d bytes available: {", available);
while (available--) {
Serial.print((char)Serial1.read());
char c = Serial1.read();
Serial.printf("0x%x='%c'", c, c);
if (available) {
Serial.print(" ");
}
}
Serial.println("}");
}
Expand Down

0 comments on commit 804ee12

Please sign in to comment.