Skip to content

Commit fd89cdd

Browse files
authored
Merge pull request adafruit#1236 from nickzoic/circuitpython/nickzoic/703-wiznet-5500-native
Circuitpython/nickzoic/703 wiznet 5500 native
2 parents dc9d338 + bbf8334 commit fd89cdd

File tree

43 files changed

+10897
-366
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+10897
-366
lines changed

conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
# directories to ignore when looking for source files.
8585
exclude_patterns = ["**/build*",
8686
".venv",
87+
".direnv",
8788
"docs/README.md",
8889
"drivers",
8990
"examples",

docs/library/usocket.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,16 +138,16 @@ Constants
138138
Note that you don't need to specify these in a call to `usocket.socket()`,
139139
because `SOCK_STREAM` socket type automatically selects `IPPROTO_TCP`, and
140140
`SOCK_DGRAM` - `IPPROTO_UDP`. Thus, the only real use of these constants
141-
is as an argument to `setsockopt()`.
141+
is as an argument to `usocket.socket.setsockopt()`.
142142

143143
.. data:: usocket.SOL_*
144144

145-
Socket option levels (an argument to `setsockopt()`). The exact
145+
Socket option levels (an argument to `usocket.socket.setsockopt()`). The exact
146146
inventory depends on a ``MicroPython port``.
147147

148148
.. data:: usocket.SO_*
149149

150-
Socket options (an argument to `setsockopt()`). The exact
150+
Socket options (an argument to `usocket.socket.setsockopt()`). The exact
151151
inventory depends on a ``MicroPython port``.
152152

153153
Constants specific to WiPy:

drivers/wiznet5k/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
This is the driver for the WIZnet5x00 series of Ethernet controllers.
2+
3+
Adapted for MicroPython.
4+
5+
Original source: https://github.com/Wiznet/W5500_EVB/tree/master/ioLibrary
6+
Taken on: 30 August 2014

0 commit comments

Comments
 (0)