Ben Eater
Ben Eater
I'd recommend modifying this part of the receiver: ```c if (bit_position == 8) { strncat(message, &rx_byte, 1); } ``` to look something like this: ```c if (bit_position == 8) {...
Good suggestion. I'll leave the PR open so it's easier for other people to see, but I'd prefer for the code in the repo to match what was in the...
I'm having a similar issue. I was able to work around it by continually checking the connection status. If it's not disconnected, just wait 200ms and check again, etc: ```ts...