Skip to content

Commit

Permalink
Fix moved files
Browse files Browse the repository at this point in the history
  • Loading branch information
tannewt committed Jan 3, 2025
1 parent 62525e9 commit 542f22c
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions ports/espressif/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ INC += \
-isystem esp-idf/components/esp_hw_support/dma/include \
-isystem esp-idf/components/esp_hw_support/include \
-isystem esp-idf/components/esp_hw_support/include/soc \
-isystem esp-idf/components/esp_hw_support/port/$(IDF_TARGET)/private_include \
-isystem esp-idf/components/esp_mm/include \
-isystem esp-idf/components/esp_netif/include \
-isystem esp-idf/components/esp_partition/include \
Expand Down Expand Up @@ -262,7 +263,7 @@ LDFLAGS += \
-Tesp32c3.rom.newlib-time.ld \
-Tesp32c3.rom.version.ld \
-Tesp32c3.rom.eco3.ld \
-Tesp32s3.rom.bt_funcs.ld
-Tesp32c3.rom.bt_funcs.ld

CHIP_COMPONENTS = \
esp_driver_tsens
Expand Down Expand Up @@ -628,8 +629,12 @@ ifneq ($(CIRCUITPY_BLEIO),0)
endif

ifeq ($(BLE_IMPL),libble)
BINARY_BLOBS += esp-idf/components/esp_phy/lib/$(IDF_TARGET)/libbtbb.a \
esp-idf/components/bt/controller/lib_$(IDF_TARGET)/$(IDF_TARGET)-bt-lib/libble_app.a
BINARY_BLOBS += esp-idf/components/esp_phy/lib/$(IDF_TARGET)/libbtbb.a
ifeq ($(IDF_TARGET),esp32c6)
BINARY_BLOBS += esp-idf/components/bt/controller/lib_$(IDF_TARGET)/$(IDF_TARGET)-bt-lib/$(IDF_TARGET)/libble_app.a
else
BINARY_BLOBS += esp-idf/components/bt/controller/lib_$(IDF_TARGET)/$(IDF_TARGET)-bt-lib/libble_app.a
endif
endif
endif
ifneq ($(CIRCUITPY_ESPULP),0)
Expand Down

0 comments on commit 542f22c

Please sign in to comment.