Skip to content
New issue

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

Fix documentation for ethernet boards. #2674

Merged
merged 2 commits into from
Dec 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions lib/esp32/net/ethernet.toit
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,11 @@ main:

# Olimex Ethernet boards
The Olimex Ethernet boards (Gateway and ESP32-POE)
need an envelope with an RMII clock output: `esp32-eth-clk-out17`.
need an envelope with an RMII clock output: `esp32-eth-clk-out17`
(WROOM) or `esp32-eth-clk-out0-spiram` (WROVER).

This firmware contains the following sdk-config change (enable
`CONFIG_ETH_RMII_CLK_OUTPUT`):
This firmware contains the sdk-config change to enable
`CONFIG_ETH_RMII_CLK_OUTPUT` (here for the WROOM):

```
--- b/toolchains/esp32/sdkconfig
Expand All @@ -108,9 +109,8 @@ This firmware contains the following sdk-config change (enable
```

# Lilygo T-Internet-COM

The [Lilygo T-Internet-COM](https://lilygo.cc/products/t-internet-com) is similar
to the Olimex board. It uses the `esp32-eth-clk-out17-spiram` envelope
to the Olimex board. It uses the `esp32-eth-clk-out0-spiram` envelope
and GPIO 4 as power pin. The rest is the same.
*/
class EthernetServiceProvider extends EthernetServiceProviderBase_:
Expand Down
Loading