Corruption appears throughout a run, not necessarily at the beginning. I would colloquially call it "random" but am not convinced it truly is as the explanation for the corruption may have a more concrete explanation - such as buffer overflow, data being dropped somewhere.Is this random, or just near the beginning of transmission? Related to cable length? Doesn't USB have error correction?But in my experience the data is often corrupted ...Code:
pi@Pi4B:/tmp $ cat /dev/ttyACM0 > /tmp/grabbed.txt^Cpi@Pi4B:/tmp $ cat /tmp/grabbed.txt1609478190160916094781921609478193
It's notable here that data was truncated - I should have wrapped the data with start and end characters to make that more obvious ... print("<{}>".format(time.time())) ...
Code:
<1609469049><1609469050><1609469<1609469052><1609469053><1609469054>
I haven't investigated deeply nor attempted to qualify the issue (*) as I've never needed to do things this way. You usually need something more complicated to handle Pico reboots, disappearance, reappearance, potentially non-reappearance, of a USB serial device as you have found.
Though I did notice, when producing my latest dump as above, that running in the '/tmp' directory -
Code:
pi@Pi4B:/tmp $ cat /dev/ttyACM0 > grabbed.txt^Cpi@Pi4B:/tmp $ cat grabbed.txt
Code:
pi@Pi4B:~ $ cat /dev/ttyACM0 > /tmp/grabbed.txt^Cpi@Pi4B:~ $ cat /tmp/grabbed.txt
Statistics: Posted by hippy — Wed Oct 23, 2024 3:13 pm