chore: Reorganize file structure

This just move files to their expected locations.
This commit is contained in:
Euripedes Rocha Filho
2025-09-22 12:39:29 +02:00
parent 7edc15287c
commit 2925288e51
143 changed files with 1 additions and 21 deletions

View File

@@ -69,7 +69,7 @@ build_and_host_test:
script: script:
# Replace the IDF's default esp-mqtt with this version # Replace the IDF's default esp-mqtt with this version
- rm -rf $IDF_PATH/components/mqtt/esp-mqtt && cp -r $MQTT_PATH $IDF_PATH/components/mqtt/ - rm -rf $IDF_PATH/components/mqtt/esp-mqtt && cp -r $MQTT_PATH $IDF_PATH/components/mqtt/
- cd $IDF_PATH/components/mqtt/esp-mqtt/host_test - cd $IDF_PATH/components/mqtt/esp-mqtt/test/host
- idf.py build - idf.py build
- build/host_mqtt_client_test.elf - build/host_mqtt_client_test.elf

View File

@@ -1,4 +0,0 @@
idf_component_get_property(original_heap_dir heap COMPONENT_OVERRIDEN_DIR)
idf_component_register(SRCS heap_mock.c
INCLUDE_DIRS "${original_heap_dir}/include")

View File

@@ -1,16 +0,0 @@
/*
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "esp_heap_caps.h"
#include <stdint.h>
#include <stdlib.h>
void *heap_caps_calloc(size_t n, size_t size, uint32_t caps) {
(void)caps;
return calloc(n, size);
}

Some files were not shown because too many files have changed in this diff Show More