Skip to content

Commit

Permalink
Update patch-serial, esp-serial-flasher, to silence cmake warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
danngreen committed Dec 23, 2024
1 parent 878449c commit efd49f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion firmware/lib/esp-serial-flasher
Submodule esp-serial-flasher updated 73 files
+47 −0 .github/ISSUE_TEMPLATE/bug_report.yml
+34 −0 .github/ISSUE_TEMPLATE/feature_request.yml
+2 −1 .gitignore
+139 −0 .gitlab-ci.yml
+49 −14 CMakeLists.txt
+18 −0 Kconfig
+49 −31 README.md
+ examples/binaries/Hello-world/ESP32/bootloader.bin
+ examples/binaries/Hello-world/ESP32/hello-world.bin
+ examples/binaries/Hello-world/ESP32/hello_world.bin
+ examples/binaries/Hello-world/ESP32_C2/bootloader.bin
+ examples/binaries/Hello-world/ESP32_C2/hello_world.bin
+ examples/binaries/Hello-world/ESP32_C2/partition-table.bin
+ examples/binaries/Hello-world/ESP32_C3/bootloader.bin
+ examples/binaries/Hello-world/ESP32_C3/hello_world.bin
+ examples/binaries/Hello-world/ESP32_C3/partition-table.bin
+ examples/binaries/Hello-world/ESP32_C6/bootloader.bin
+ examples/binaries/Hello-world/ESP32_C6/hello_world.bin
+ examples/binaries/Hello-world/ESP32_C6/partition-table.bin
+ examples/binaries/Hello-world/ESP32_H2/bootloader.bin
+ examples/binaries/Hello-world/ESP32_H2/hello_world.bin
+ examples/binaries/Hello-world/ESP32_H2/partition-table.bin
+ examples/binaries/Hello-world/ESP32_S2/bootloader.bin
+ examples/binaries/Hello-world/ESP32_S2/hello-world.bin
+ examples/binaries/Hello-world/ESP32_S2/hello_world.bin
+ examples/binaries/Hello-world/ESP32_S3/bootloader.bin
+ examples/binaries/Hello-world/ESP32_S3/hello_world.bin
+ examples/binaries/Hello-world/ESP32_S3/partition-table.bin
+ examples/binaries/RAM_APP/ESP32/app.bin
+ examples/binaries/RAM_APP/ESP32_C2/app.bin
+ examples/binaries/RAM_APP/ESP32_C3/app.bin
+ examples/binaries/RAM_APP/ESP32_C6/app.bin
+ examples/binaries/RAM_APP/ESP32_H2/app.bin
+ examples/binaries/RAM_APP/ESP32_S2/app.bin
+ examples/binaries/RAM_APP/ESP32_S3/app.bin
+15 −0 examples/binaries/RAM_APP/source/CMakeLists.txt
+2 −0 examples/binaries/RAM_APP/source/main/CMakeLists.txt
+16 −0 examples/binaries/RAM_APP/source/main/main.c
+11 −0 examples/binaries/RAM_APP/source/sdkconfig.defaults
+1 −1 examples/common/bin2array.cmake
+91 −9 examples/common/example_common.c
+4 −0 examples/esp32_example/partitions.csv
+1 −0 examples/esp32_example/sdkconfig.defaults
+1 −1 examples/esp32_load_ram_example/main/main.c
+7 −0 examples/esp32_spi_load_ram_example/CMakeLists.txt
+80 −0 examples/esp32_spi_load_ram_example/README.md
+14 −0 examples/esp32_spi_load_ram_example/main/CMakeLists.txt
+97 −0 examples/esp32_spi_load_ram_example/main/main.c
+4 −0 examples/esp32_spi_load_ram_example/sdkconfig.defaults
+3 −0 examples/zephyr_example/CMakeLists.txt
+1 −1 idf_component.yml
+26 −81 include/esp_loader.h
+7 −0 include/esp_loader_io.h
+0 −12 port/custom_port.h
+14 −31 port/esp32_port.c
+298 −0 port/esp32_spi_port.c
+60 −0 port/esp32_spi_port.h
+11 −14 port/raspberry_port.c
+11 −33 port/stm32_port.c
+22 −0 port/zephyr_port.c
+11 −23 private_include/protocol.h
+31 −0 private_include/protocol_prv.h
+50 −111 src/esp_loader.c
+49 −4 src/esp_targets.c
+7 −178 src/protocol_common.c
+312 −0 src/protocol_spi.c
+114 −0 src/protocol_uart.c
+2 −2 src/slip.c
+7 −2 test/CMakeLists.txt
+2 −1 test/qemu_test.cpp
+23 −0 test/serial_io_tcp.cpp
+8 −0 test/test.cpp
+4 −1 zephyr/CMakeLists.txt
2 changes: 1 addition & 1 deletion firmware/lib/patch-serial
1 change: 1 addition & 0 deletions simulator/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ add_subdirectory(lvgl_drv)
# #################### LVGL ############################################

get_filename_component(LV_CONF_DIR ${LV_CONF_PATH} DIRECTORY)
cmake_policy(SET CMP0177 OLD)
include(${LVGL_DIR}/CMakeLists.txt)
target_include_directories(lvgl PRIVATE
${FWDIR}/lib/fatfs/source
Expand Down

0 comments on commit efd49f6

Please sign in to comment.