File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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.
44FEATURES_EXISTING := \
5+ lpc1768_eth \
56 arch_16bit \
67 arch_32bit \
78 arch_64bit \
Original file line number Diff line number Diff line change @@ -119,6 +119,9 @@ endif
119119# use efm32_coretemp if the feature is used
120120USEMODULE += $(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
123126USEMODULE += $(filter vdd_lc_filter_% ,$(FEATURES_USED ) )
124127
You can’t perform that action at this time.
0 commit comments