We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
current code
Adafruit_CircuitPython_Wiznet5k/adafruit_wiznet5k/adafruit_wiznet5k.py
Lines 866 to 868 in f00a3f7
I think, don't need to add base , sock * CH_SIZE like _read_socket() function. It's enough to use offset.
base
sock * CH_SIZE
My suggestion is
cntl_byte = (sock << 5) + 0x0C return self.write(address, cntl_byte, data)
in W5500 datasheet,
The text was updated successfully, but these errors were encountered:
@bjnhur I think you're correct as well, would you mind opening a PR? I can test this on the W5500 ethernet wing to verify.
Sorry, something went wrong.
Good. I also added this commit in current PR #42
Closing, fixed by #42.
No branches or pull requests
current code
Adafruit_CircuitPython_Wiznet5k/adafruit_wiznet5k/adafruit_wiznet5k.py
Lines 866 to 868 in f00a3f7
I think, don't need to add
base
,sock * CH_SIZE
like _read_socket() function. It's enough to use offset.My suggestion is
in W5500 datasheet,

The text was updated successfully, but these errors were encountered: