8000 esp32/Makefile: Include all driver/*.c in build. Fixes #4869 by nevercast · Pull Request #4874 · micropython/micropython · GitHub
[go: up one dir, main page]

Skip to content

esp32/Makefile: Include all driver/*.c in build. Fixes #4869 #4874

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

Closed
Changes from all commits
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
16 changes: 1 addition & 15 deletions ports/esp32/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -256,21 +256,7 @@ $(HEADER_BUILD)/qstrdefs.generated.h: $(SDKCONFIG_H)
################################################################################
# List of object files from the ESP32 IDF components

ESPIDF_DRIVER_O = $(addprefix $(ESPCOMP)/driver/,\
uart.o \
periph_ctrl.o \
ledc.o \
gpio.o \
timer.o \
sdmmc_host.o \
sdmmc_transaction.o \
sdspi_crc.o \
sdspi_host.o \
sdspi_transaction.o \
spi_master.o \
spi_common.o \
rtc_module.o \
)
ESPIDF_DRIVER_O = $(subst .c,.o,$(wildcard $(ESPCOMP)/driver/*.c))

ESPIDF_EFUSE_O = $(addprefix $(ESPCOMP)/efuse/,\
esp32/esp_efuse_table.o \
Expand Down
0