Skip to content

Commit 9187d16

Browse files
committed
features.yaml: s/esp_eth/periph_eth/
Use periph_eth instead of esp_eth for the Ethernet peripheral on ESP MCUs for consistency
1 parent 8e37554 commit 9187d16

File tree

5 files changed

+3
-8
lines changed

5 files changed

+3
-8
lines changed

boards/esp32-ethernet-kit-v1_0/Makefile.features

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ CPU_MODEL = esp32-wrover
44
include $(RIOTBOARD)/common/esp32/Makefile.features
55

66
# additional features provided by the board
7-
FEATURES_PROVIDED += esp_eth
87
FEATURES_PROVIDED += periph_adc
8+
FEATURES_PROVIDED += periph_eth
99
FEATURES_PROVIDED += periph_i2c
1010
FEATURES_PROVIDED += periph_pwm
1111

boards/esp32-olimex-evb/Makefile.features

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ FEATURES_CONFLICT += periph_sdmmc:periph_spi
1919
FEATURES_CONFLICT_MSG += "SD/MMC and SPI cannot be used at the same time on this board."
2020

2121
# unique features of the board
22-
FEATURES_PROVIDED += esp_eth # Ethernet MAC (EMAC)
2322
FEATURES_PROVIDED += periph_can # CAN peripheral interface
23+
FEATURES_PROVIDED += periph_eth # Ethernet MAC (EMAC)
2424

2525
FEATURES_PROVIDED += arduino_pins

cpu/esp32/Makefile.dep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ifneq (,$(filter esp_ble,$(USEMODULE)))
3232
endif
3333

3434
ifneq (,$(filter esp_eth,$(USEMODULE)))
35-
FEATURES_REQUIRED += esp_eth
35+
FEATURES_REQUIRED += periph_eth
3636
USEMODULE += esp_idf_eth
3737
USEMODULE += esp_idf_event
3838
USEMODULE += esp_idf_gpio

features.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,6 @@ groups:
138138
- title: ESP Specific Features
139139
help: These features are only available on (some) ESP MCUs.
140140
features:
141-
- name: esp_eth
142-
help: >
143-
An ESP Ethernet peripherals is available.
144-
(FIXME: `periph_eth` instead.)
145141
- name: esp_jtag
146142
help: The MCU supports JTAG for programming and debugging. Enable this
147143
feature to expose the interface at the cost of having fewer pins as

makefiles/features_existing.inc.mk

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ FEATURES_EXISTING := \
114114
esp_ble \
115115
esp_ble_esp32 \
116116
esp_ble_esp32c3 \
117-
esp_eth \
118117
esp_hw_counter \
119118
esp_jtag \
120119
esp_now \

0 commit comments

Comments
 (0)