From 9f938ab8ba5af561bd44dbc7142f338ce317a01a Mon Sep 17 00:00:00 2001 From: Sadeep Madurange Date: Sat, 1 Nov 2025 09:46:52 +0800 Subject: Etlas project. --- .../port/esp/unity_utils_memory_esp.c.obj | Bin 0 -> 10640 bytes .../__idf_unity.dir/unity/src/unity.c.obj | Bin 0 -> 142108 bytes .../__idf_unity.dir/unity_port_esp32.c.obj | Bin 0 -> 19780 bytes .../CMakeFiles/__idf_unity.dir/unity_runner.c.obj | Bin 0 -> 44276 bytes .../__idf_unity.dir/unity_utils_cache.c.obj | Bin 0 -> 5952 bytes .../__idf_unity.dir/unity_utils_freertos.c.obj | Bin 0 -> 18496 bytes .../__idf_unity.dir/unity_utils_memory.c.obj | Bin 0 -> 16228 bytes esp32/build/esp-idf/unity/cmake_install.cmake | 39 +++++++++++++++++++++ esp32/build/esp-idf/unity/libunity.a | Bin 0 -> 259702 bytes 9 files changed, 39 insertions(+) create mode 100644 esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj create mode 100644 esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj create mode 100644 esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj create mode 100644 esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj create mode 100644 esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj create mode 100644 esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj create mode 100644 esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj create mode 100644 esp32/build/esp-idf/unity/cmake_install.cmake create mode 100644 esp32/build/esp-idf/unity/libunity.a (limited to 'esp32/build/esp-idf/unity') diff --git a/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj b/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj new file mode 100644 index 0000000..f830ddd Binary files /dev/null and b/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj differ diff --git a/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj b/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj new file mode 100644 index 0000000..aa18df9 Binary files /dev/null and b/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj differ diff --git a/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj b/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj new file mode 100644 index 0000000..badf537 Binary files /dev/null and b/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj differ diff --git a/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj b/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj new file mode 100644 index 0000000..5d7b2e5 Binary files /dev/null and b/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj differ diff --git a/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj b/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj new file mode 100644 index 0000000..988a415 Binary files /dev/null and b/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj differ diff --git a/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj b/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj new file mode 100644 index 0000000..90b0e2e Binary files /dev/null and b/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj differ diff --git a/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj b/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj new file mode 100644 index 0000000..60aa5bd Binary files /dev/null and b/esp32/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj differ diff --git a/esp32/build/esp-idf/unity/cmake_install.cmake b/esp32/build/esp-idf/unity/cmake_install.cmake new file mode 100644 index 0000000..1c5de22 --- /dev/null +++ b/esp32/build/esp-idf/unity/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /opt/esp-idf/components/unity + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/home/sadeep/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump") +endif() + diff --git a/esp32/build/esp-idf/unity/libunity.a b/esp32/build/esp-idf/unity/libunity.a new file mode 100644 index 0000000..980f4e0 Binary files /dev/null and b/esp32/build/esp-idf/unity/libunity.a differ -- cgit v1.2.3