Firmware
Adafruit CircuitPython 7.0.0-alpha.3 on 2021-06-03; Raspberry Pi Pico with rp2040
Code/REPL
import usb_cdc
import binascii
while True:
# get serial data
while usb_cdc.data.in_waiting > 0:
print(binascii.hexlify(usb_cdc.data.read(256)))
Behavior
The data printed by the program does not match what I send.
Description
Any data I try to receive appears damaged or partially overwritten.
Here is a before and after of 128 bytes sent to my Pi:

Here is a before and after of 560 bytes sent:

Firmware
Code/REPL
Behavior
The data printed by the program does not match what I send.
Description
Any data I try to receive appears damaged or partially overwritten.
Here is a before and after of 128 bytes sent to my Pi:

Here is a before and after of 560 bytes sent:
