summaryrefslogtreecommitdiff
path: root/shared-module/network
AgeCommit message (Collapse)Author
2020-07-06Add license to some obvious files.Diego Elio Pettenò
2020-06-03Fix up end of file and trailing whitespace.Diego Elio Pettenò
This can be enforced by pre-commit, but correct it separately to make it easier to review.
2019-11-18Supervisor: move most of systick to the supervisorJeff Epler
This code is shared by most parts, except where not all the #ifdefs inside the tick function were present in all ports. This mostly would have broken gamepad tick support on non-samd ports. The "ms32" and "ms64" variants of the tick functions are introduced because there is no 64-bit atomic read. Disabling interrupts avoids a low probability bug where milliseconds could be off by ~49.5 days once every ~49.5 days (2^32 ms). Avoiding disabling interrupts when only the low 32 bits are needed is a minor optimization. Testing performed: on metro m4 express, USB still works and time.monotonic_ns() still counts up
2019-05-10randomize tcp source port for adafruit/circuitpython#1800Nick Moore
2019-05-10reset wiznet at network deinitialize adafruit/circuitpython#1800Nick Moore
2019-05-07Clean up list of NICs on network deinit adafruit/circuitpython#1800Nick Moore
2018-10-16fixupNick Moore
2018-10-16add mechanism for timer ticks in NICsNick Moore
2018-10-11network module c api into shared-moduleNick Moore
2018-10-09move random mac address function into network moduleNick Moore
2018-10-04modify modnetwork and modusocket for circuitpythonNick Moore