SDSPI fix for ESP32-C5: correct API v5.5, CMake dependencies, pin mapping

This commit is contained in:
Clawdia
2026-05-09 17:59:43 +02:00
parent 240a374148
commit 913b33d839
1519 changed files with 210337 additions and 610 deletions
@@ -0,0 +1,27 @@
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
cmake_minimum_required(VERSION ${CMAKE_VERSION}) # this file comes with cmake
# If CMAKE_DISABLE_SOURCE_CHANGES is set to true and the source directory is an
# existing directory in our source tree, calling file(MAKE_DIRECTORY) on it
# would cause a fatal error, even though it would be a no-op.
if(NOT EXISTS "/home/claw/esp/esp-idf/components/bootloader/subproject")
file(MAKE_DIRECTORY "/home/claw/esp/esp-idf/components/bootloader/subproject")
endif()
file(MAKE_DIRECTORY
"/home/claw/.openclaw/workspace/v2x-sniffer/v2x_fw/build/bootloader"
"/home/claw/.openclaw/workspace/v2x-sniffer/v2x_fw/build/bootloader-prefix"
"/home/claw/.openclaw/workspace/v2x-sniffer/v2x_fw/build/bootloader-prefix/tmp"
"/home/claw/.openclaw/workspace/v2x-sniffer/v2x_fw/build/bootloader-prefix/src/bootloader-stamp"
"/home/claw/.openclaw/workspace/v2x-sniffer/v2x_fw/build/bootloader-prefix/src"
"/home/claw/.openclaw/workspace/v2x-sniffer/v2x_fw/build/bootloader-prefix/src/bootloader-stamp"
)
set(configSubDirs )
foreach(subDir IN LISTS configSubDirs)
file(MAKE_DIRECTORY "/home/claw/.openclaw/workspace/v2x-sniffer/v2x_fw/build/bootloader-prefix/src/bootloader-stamp/${subDir}")
endforeach()
if(cfgdir)
file(MAKE_DIRECTORY "/home/claw/.openclaw/workspace/v2x-sniffer/v2x_fw/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash
endif()