You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in wifi.py line 836 there is a check that the first byte of a wifi sample is ==33. However, the docs clearly state that the shield adds 0xa0 to the start of every packet, which is not 33 but rather 160 when translated to int. This critical bug causes all packets to be read as invalid.
The text was updated successfully, but these errors were encountered:
in
wifi.py
line 836 there is a check that the first byte of a wifi sample is==33
. However, the docs clearly state that the shield adds0xa0
to the start of every packet, which is not 33 but rather 160 when translated toint
. This critical bug causes all packets to be read as invalid.The text was updated successfully, but these errors were encountered: