I'm running a Python sketch in Windows which communicates with an Arduino sketch on a Nano Every. Both sides constantly listen for input from each other via the serial port, run by purejavacomm in Python. Each side sends a heartbeat so that the other side knows the communication is still working.
Normally, Python correctly sees the "HI" heartbeat (0x48, 0x49, 0x0D) sen...