mirror of
https://github.com/espressif/esp-mqtt.git
synced 2025-09-25 06:31:34 +02:00
chore: Reorganize file structure
This just move files to their expected locations.
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
@@ -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")
|
|
@@ -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
Reference in New Issue
Block a user