Skip to content

Commit 6a742ef

Browse files
committed
features: add lpc1768_eth to features
1 parent faae437 commit 6a742ef

3 files changed

Lines changed: 10 additions & 0 deletions

File tree

features.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,12 @@ groups:
170170
used for other purposes.
171171
- name: esp_ble
172172
help: An ESP32x Bluetooth LE transceiver is present.
173+
- title: LPC1768 Specific Features
174+
features:
175+
- name: lpc1768_eth
176+
help: The LPC1768 MCU has an Ethernet MAC peripheral. Note that this does
177+
not necessarily mean that the board has an Ethernet PHY connected to
178+
it.
173179
- title: nordic nRF Specific Features
174180
features:
175181
- name: radio_nrf802154

makefiles/features_existing.inc.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Do not edit this by hand, but update features.yaml instead.
33
# Finally, run `make generate-features` in the root of the RIOT repo.
44
FEATURES_EXISTING := \
5+
lpc1768_eth \
56
arch_16bit \
67
arch_32bit \
78
arch_64bit \

makefiles/features_modules.inc.mk

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ endif
119119
# use efm32_coretemp if the feature is used
120120
USEMODULE += $(filter efm32_coretemp, $(FEATURES_USED))
121121

122+
# use lpc1768_eth if the feature is used
123+
USEMODULE += $(filter lpc1768_eth, $(FEATURES_USED))
124+
122125
# if LC filter(s) is attached to the CPUs voltage regulator, use it
123126
USEMODULE += $(filter vdd_lc_filter_%,$(FEATURES_USED))
124127

0 commit comments

Comments
 (0)