pchala
pchala
On my FR245 v12.10 app v 1.9.4 drains battery quite fast. Seems PBM sensor and/or GPS are switched on.
> In the BUF_SIZE=10000 you have used bytes(x).hex(). > So you would send 20001 bytes. In the BUF_SIZE=40000 you have just sent the bytes object. Yes, in case of sending...
> What is the PC side, is it a Windows, Linux, Mac or other? Windows is known to have bad serial drivers. Yes it is Windows 10. Still strange that...
I have add checks MCU code: ``` import sys BUF_SIZE = 10 * 1024 buf = bytes() for i in range(BUF_SIZE//0x100): buf += i.to_bytes(1, 'big') * 0x100 while True: sys.stdin.readline()...