aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-03-27 20:39:54 +0000
committerGitHub <[email protected]>2023-03-27 20:39:54 +0000
commitc15f07de4f4c0dbb9b70326aa42cb986c035a0ec (patch)
treeaf05b4fc1b61c61ab3bff9d1623d85ce3de44c63
parente9e2be137fb69ebb7d631e6d3b23b007cc1baa1e (diff)
parent983a94a9c5166f5f4fea103737c6bbe436bec106 (diff)
Merge pull request #55 from kbleeke/master
update readme
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index 5d4347e99..d24ec82f3 100644
--- a/README.md
+++ b/README.md
@@ -10,15 +10,16 @@ Working:
10- Sending and receiving Ethernet frames. 10- Sending and receiving Ethernet frames.
11- Using the default MAC address. 11- Using the default MAC address.
12- [`embassy-net`](https://embassy.dev) integration. 12- [`embassy-net`](https://embassy.dev) integration.
13- RP2040 PIO driver for the nonstandard half-duplex SPI used in the Pico W.
14- Using IRQ for device events
15- GPIO support (for LED on the Pico W)
13 16
14TODO: 17TODO:
15 18
16- AP mode (creating an AP) 19- AP mode (creating an AP)
17- GPIO support (used for the Pico W LED)
18- Scanning 20- Scanning
19- Setting a custom MAC address. 21- Setting a custom MAC address.
20- RP2040 PIO driver for the nonstandard half-duplex SPI used in the Pico W. Probably porting [this](https://github.com/raspberrypi/pico-sdk/tree/master/src/rp2_common/cyw43_driver). (Currently bitbanging is used). 22- Investigate why can [this](https://github.com/raspberrypi/pico-sdk/tree/master/src/rp2_common/pico_cyw43_driver) use higher PIO speed.
21- Using the IRQ pin instead of polling the bus.
22- Bus sleep (unclear what the benefit is. Is it needed for IRQs? or is it just power consumption optimization?) 23- Bus sleep (unclear what the benefit is. Is it needed for IRQs? or is it just power consumption optimization?)
23 24
24## Running the example 25## Running the example